-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontactform.html
More file actions
37 lines (33 loc) · 1.07 KB
/
contactform.html
File metadata and controls
37 lines (33 loc) · 1.07 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="styleform.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300|Roboto:100&display=swap" rel="stylesheet">
<title></title>
<meta content="">
<style></style>
</head>
<body>
<script src="formjs.js"></script>
<section id="hire">
<h1>Contact Us</h1>
<form>
<div class="field name-box">
<input type="text" id="name" placeholder="Who Are You?"/>
<label for="name">Name</label>
<span class="ss-icon">check</span>
</div>
<div class="field email-box">
<input type="text" id="email" placeholder="name@email.com"/>
<label for="email">Email</label>
<span class="ss-icon">check</span>
</div>
<div class="field msg-box">
<input type="text" id="msg" placeholder="Your Message"/>
<label for="msg"> Message</label>
<span class="ss-icon">check</span>
</div>
<input class="button" type="submit" value="Send" />
</form>
</section>
</body>
</html>