-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
49 lines (46 loc) · 1.44 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Owenisas Contact</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icons/my_icon.png" type="image/png">
</head>
<body>
<header>
<div class="wrapper">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="wrapper">
<section class="hero">
<div class="hero-text">
<h1>Contact Me</h1>
<p>Feel free to get in touch!</p>
</div>
</section>
<section class="contact">
<h2>Find me online</h2>
<ul class="social-links">
<li><a href="mailto:[email protected]"><img src="icons/Chalotte.png" alt="Email">Email Me!</a></li>
<li><a href="https://www.instagram.com/owenisas" target="_blank"><img src="icons/jodio.jpg" alt="Instagram">Message Me!</a></li>
</ul>
</section>
</div>
</main>
<footer>
<p>© 2023</p>
<img class="logo" src="owenisas Main Logo.png" alt="Owenisas Logo">
<p>All rights reserved.</p>
</footer>
</body>
</html>