-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact-us.html
31 lines (31 loc) · 1.3 KB
/
contact-us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="contact-us.css">
<title>CONTACT US</title>
</head>
<!-- onload="document.contact.fname.focus();" -->
<!-- Use above code in body to focus on the first name field -->
<body>
<div class="nav">
<nav><a href="index.html"><img src="images/anime.png" alt="my logo" id="logo"></a></nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="#">ABOUT US</a></li>
<li><a href="#">GALLERY</a></li>
<li><a href="contact-us.html" class="active">CONTACT US</a></li>
</ul>
</div>
<div class="name">CONTACT US</div>
<form name="contact" method="post" class="form">
<input type="text" placeholder="First Name" name="fname" required><br><br><br>
<input type="text" placeholder="Last Name" name="lname" required><br><br><br>
<input type="email" placeholder="Email, e.g [email protected]" name="em" required><br><br><br>
<input type="text" placeholder="Message" id="mess" required><br><br><br>
<input type="submit" value="Submit" id="sub" name="submit">
</form>
</body>
</html>