-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
95 lines (81 loc) · 3.24 KB
/
contact.html
File metadata and controls
95 lines (81 loc) · 3.24 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bloggy - Contact</title>
<link rel="stylesheet" href="./assets/css/style.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Protest+Revolution&family=Roboto:wght@900&display=swap"
rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<body>
<!-- HEADER -->
<header class="contact-header">
<div class="navigation">
<a href="./index.html" class="logo">Bloggy</a>
<nav>
<label for="mobile">Menu</label>
<input type="checkbox" id="mobile">
<ul class="mobile-menu">
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./sample-post.html">Sample Post</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</div>
<div class="banner">
<h1>Contact Me</h1>
<p>Have questions? I have answers</p>
</div>
</header>
<!-- FIN HEADER -->
<!-- MAIN -->
<main>
<section>
<div class="container contact-container">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eius nesciunt placeat et similique
dignissimos at, perferendis fugit a culpa omnis.</p>
<form>
<div>
<input type="text" placeholder="Name">
</div>
<div>
<input type="email" placeholder="Email address">
</div>
<div>
<input type="text" placeholder="Phone Number" value="">
</div>
<div>
<textarea cols="30" rows="2" placeholder="Message"></textarea>
</div>
<!-- Button -->
<div>
<input type="submit" value="Send" class="send-message">
</div>
</form>
</div>
<hr>
</section>
</main>
<!-- FIN MAIN -->
<!-- FOOTER -->
<footer>
<div>
<ul>
<li><a href=""><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href=""><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href=""><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
<p>Copyright © Bloggy 2024 | Design: TIFFANY</p>
</div>
</footer>
<!-- FIN FOOTER -->
</body>
</html>