-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
45 lines (44 loc) · 2.06 KB
/
contact.html
File metadata and controls
45 lines (44 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Contact | Blog Layout Prototype</title>
<link rel="stylesheet" href="css/style.css">
<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=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<p>Blog Site</p>
<nav>
<ul class="nav">
<li><a class="nav__link" href="index.html">Blogs</a></li>
<li><a class="nav__link" href="about.html">About</a></li>
<li><a class="nav__link" href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main class="main">
<section class="page-container contact">
<h1 class="center">Get in touch</h1>
<p>Have feedback, questions, or just want to connect? Reach out using the details below.</p>
<p><strong>E-mail:</strong> hello@simpleblog.dev</p>
<p><strong>Location:</strong> New Delhi, India</p>
<form class="form" method="post">
<label for="name">Name</label>
<input class="form__element" id="name" name="name" type="text" placeholder="e.g John Doe" required>
<label for="email">E-mail</label>
<input class="form__element" id="email" name="email" type="email" placeholder="e.g john25@hotmail.com" required>
<label for="message">Message</label>
<textarea class="form__element" id="message" name="message" rows="4" placeholder="Type your message here"></textarea>
<button class="button button--primary" type="submit">Send Message</button>
</form>
</section>
</main>
<footer class="footer">
<p>© 2026 BrandName. All rights reserved.</p>
</footer>
</body>
</html>