-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 1.02 KB
/
index.html
File metadata and controls
35 lines (30 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>mwForm</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="pre-form">
<h2>We'd love to hear your thoughts!</h2>
</div>
<div class="form-container">
<form id="form" name="form">
<h3>Contact Us Here:</h3>
<p id="message"></p>
<label>Name:</label>
<input id="name" placeholder="Name" type="text"><br>
<label>Email:</label>
<input id="email" placeholder="Email" type="email"><br>
<label>Number:</label>
<input id="phone" placeholder="10 digit phone number." type="tel"><br>
<label>Message:</label>
<textarea id="message" placeholder="Your thoughts here :)"></textarea><br>
<input id="submit" type="button" value="Send It!">
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>