-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
72 lines (63 loc) · 2.47 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<!--Style link-->
<link rel="stylesheet" href="CSS/styles.css">
<!--Font Awesome link-->
<script src="https://kit.fontawesome.com/c238d9165e.js" crossorigin="anonymous"></script>
<title>Sebastian | Contact</title>
<meta title="viewport" content="width:device-width,initial-scale=1.0">
<meta charset="UTF-8">
</head>
<body>
<header></header>
<nav> <!--When assigning position: sticky, the nav should not be in any other tags. Otherwise it would not work-->
<div class="logo">
<a href="#">a fancy logo</a>
</div>
<ul id="sidebar">
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="donate.html">Donate</a></li>
<li><a class="active" href="contact.html">Contact Me</a></li>
<li><a class="Account" href="account.html">Log In</a></li>
</ul>
<div class="burger">
<button id="openSidebar"></button>
<span></span>
<span></span>
<span></span>
</div>
</nav>
<main>
<article>
<section>
<h2>Nothing to see here...</h2>
<p>Links will go in there later, i'm very tired today.</p>
<p>Lorems will not be present this time around.</p>
</section>
<!--contact box-->
<section class="contact">
<h3>You can contact me at:</h3>
<div class="contact-item"><i class="fab fa-whatsapp"></i>+00 0123 4567 891 | +00 9876 5432 1234</div>
<div class="contact-item"><i class="fab fa-linkedin-in"></i>My Name</div>
<div class="contact-item"><i class="fab fa-github"></i>My Name</div>
<div class="contact-item"><i class="fab fa-facebook-f"></i>My Name</div>
<div class="contact-item"><i class="fab fa-instagram-square"></i>My Name</div>
<div class="contact-item"><i class="fab fa-twitter"></i>My Name</div>
<div class="contact-item"><i class="fab fa-youtube"></i>My Name</div>
</section>
<!--end of contact box-->
<section>
<p>Hold on, I know what you're thinking. "There is no links here! How will I contact you?" Well.. read the first sentence.</p>
<p>I put the icons in there to practive using <a href="https://fontawesome.com">Font Awesome</a>. They are real awesome.</p>
</section>
</article>
</main>
<!--footer-->
<footer>
<hr>
<p>Made by Efraim Munthe, 2021. All rights reserved.</p>
</footer>
</body>
</html>