-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
38 lines (37 loc) · 1.25 KB
/
contact.html
File metadata and controls
38 lines (37 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel = "stylesheet" href = "styles.css">
</head>
<body>
<header>
<h1>Contact Us</h1>
</header>
<br>
<nav>
<a href = "index.html">Home</a>
<a href = "services.html">Services</a>
<a href = "contact.html">Contact</a>
</nav>
<div class = "content">
<img src = "https://t3.ftcdn.net/jpg/05/30/96/04/360_F_530960431_c8fPd3HansYvrSJ4fJxZqp9OhjQmYoll.jpg" class = "content img">
<h2>Get in Touch</h2>
<form action = "#" method = "post">
<label for = "name">Name:</label>
<input type = "text" id = "name" name="name" required><br><br>
<label for = "email">Email:</label>
<input type = "email" id = "email" name = "email" required><br><br>
<label for = "message">Message:</label><br>
<textarea id = "message" name = "message" rows="4" cols="50"></textarea><br><br>
<button type = "submit">Submit</button>
</form>
</div>
<br><br>
<footer>
<p>© 2024 Our Business. All Rights Reserved.</p>
</footer>
</body>
</html>