-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew_contact.html
More file actions
48 lines (41 loc) · 1.46 KB
/
Copy pathnew_contact.html
File metadata and controls
48 lines (41 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>Navigation bar DEMO</title>
<link rel="stylesheet" href="new_contact.css">
</head>
<body>
<header>
<img src="LOGO_fotor-202403137254.png">
<h1>Service Provider</h1>
<nav>
<ul>
<li><a href="new_Home.html">Home</a></li>
<li><a href="new_services.html">Services</a></li>
<li><a href="new_aboutus.html">About Us</a></li>
<li><a href="new_contact.html">Contact</a></li>
</ul>
</nav>
</header>
<hr class="dark:border-gray-500">
<div class="contact_block">
<section class="contact-section">
<div class="container">
<h2>Get In Touch</h2>
<p>Need assistance? Fill out the form below.</p>
<form action="#" method="post" class="form">
<input type="text" name="name" placeholder="Your Name" class="input"><br>
<input type="email" name="email" placeholder="Your Email" class="input"><br>
<textarea name="message" placeholder="Your Message" class="input"></textarea><br>
<button type="submit" class="inputsub">Submit</button><br>
</form>
</div>
</section>
</div>
<footer>
<div class="lcontainer">
<p>© 2024 Your Company. All rights reserved.</p>
</div>
</footer>
</body>
</html>