-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 969 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width">
<title>MasteryConnect Coding Test</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div></div>
<fieldset>
<h2>Sign up</h2>
<p>Let us know about yourself.</p>
<form id="partI">
<label for="first_name">First Name*
<input name="first_name" id="first_name">
</label>
<label for="last_name">Last Name*
<input name="last_name" id="last_name">
</label>
<label for="phone">Phone
<input name="phone" id="phone">
</label>
<label for="email">Email*
<input name="email" id="email">
</label>
<label for="message">Short Bio*
<textarea name="message" id="message"></textarea>
</label>
<input type="submit" id="submit">
</form>
</fieldset>
<script src="js/form.js"></script>
</body>
</html>