-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.html
56 lines (56 loc) · 1.66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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.css" />
<title>Clock using pure JS/Contact</title>
<link
href="https://fonts.googleapis.com/css2?family=Acme&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation BAR -->
<nav class="navigation">
<ul>
<label for="">iClock</label>
<li><a href="./index.html">Home</a></li>
<li><a href="./About.html">About</a></li>
<li><a href="#contact" class="active">Contact</a></li>
</ul>
</nav>
<!-- Heading -->
<div class="wrapper">
<div class="heading">Contact Section</div>
</div>
<!-- FORM -->
<form action="">
<div class="box">
<div class="query"><h3>Any Query</h3></div>
<input type="text" placeholder="Username" />
<input type="date" placeholder="Date of Birth" />
<input type="email" placeholder="E-mail ID" />
<textarea
name=""
id=""
cols="10"
rows="10"
placeholder="Your queries"
></textarea>
<div class="Button">
<button class="btn">Submit</button>
</div>
</div>
</form>
<!-- Follow US LINKS-->
<div class="social-media">
</div>
</body>
</html>