-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
65 lines (39 loc) · 1.57 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
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Contact</title>
</head>
<body>
<nav>
<div class="heading">
<h4>Contact Me</h4>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="wrapper">
<form class="form">
<div class="pageTitle title">Sign Up </div>
<div class="secondaryTitle title">Please fill this form to sign up.</div>
<input type="text" class="name formEntry" placeholder="Name" />
<input type="text" class="email formEntry" placeholder="Email"/>
<textarea class="message formEntry" placeholder="Message"></textarea>
<input type="checkbox" class="termsConditions" value="Term">
<label style="color: grey" for="terms"> I Accept the <span style="color: #0e3721">Terms of Use</span> & <span style="color: #0e3721">Privacy Policy</span>.</label><br>
<button class="submit formEntry" onclick="thanks()">Submit</button>
</form>
</div>
<script src="app.js"></script>
</body>
</html>