-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
42 lines (42 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us | IT Consulting Services</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<header>
<nav>
<div class="logo">IT Consulting Services</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
</header>
<main>
<section id="contact">
<h1>Contact Us</h1>
<form>
<label for="name">Name</label>
<input type="text" id="name" name="name">
<label for="email">Email</label>
<input type="email" id="email" name="email">
<label for="message">Message</label>
<textarea id="message" name="message"></textarea>
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<p>© 2023 IT Consulting Services. All rights reserved.</p>
<p><a href="sitemap.html">Sitemap</a></p>
</footer>
</body>
</html>