-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
55 lines (54 loc) · 2.15 KB
/
contact.html
File metadata and controls
55 lines (54 loc) · 2.15 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
49
50
51
52
53
54
55
<!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" />
<title>CONTACT</title>
<link rel="stylesheet" href="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=Fira+Sans:ital,wght@0,300;0,400;1,400&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav >
<div class="navbar">
<div class="logo">
<a href=""><h1><span class="hee">Hee</span><span class="mah">Mah</span><span class="flower">🌷</span></h1></a>
</div>
<div class="menu" >
<ul>
<li><a href="index.html">ABOUT</a></li>
<li ><a href="contact.html">CONTACT</a></li>
<li ><a href="register.html">REGISTER</a></li>
<li ><a href="login.html">LOGIN</a></li>
</ul>
</div>
</div>
</nav>
</header>
<main >
<div class="body">
<div class="form">
<h2>Contact Me</h2>
<hr >
<form action="" method="get">
<label for="name" class="label">NAME:</label><br>
<input type="text"name="name" id=""class="input" placeholder="Name"required /><br>
<label for="email" class="label">EMAIL:</label><br>
<input type="email"name="email"id=""class="input"placeholder="name@gmail.com"required/><br>
<label for="name" class="label">MESSAGE:</label><br>
<textarea name="message" id="" cols="30" rows="10" placeholder=" Write Something Here" required ></textarea ><br>
<input type="submit" class="submit">
</form>
</div>
</div>
</main>
<footer>
<section>
<div class="navbardown" ></div>
</section>
</footer>
</body>
</html>