-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile3.html
68 lines (48 loc) · 1.75 KB
/
profile3.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
66
67
68
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Local First</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<!-- add font here -->
<!-- css -->
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="smartphone">
<div class="content">
<form class="register-form">
<div class="profile3">
<label class="label" for='name'>
Name of Business
</label>
<input id='name' class="form-input">
<label class="label" for='address'>
Address
</label>
<input class="form-input" id='address'>
<label for='employees' class="label">Number of employees</label>
<select name="employees" class="form-input" id="employees">
<option value="5">1-5</option>
<option value="6">6-15</option>
<option value="30">16-30</option>
<option value="50">31-50</option>
</select>
<label for='revenue' class="label">Annual revenue</label>
<select name="revenue" class="form-input" id="revenue">
<option value="">?</option>
<option value="">more than ?</option>
<option value="">even more ?</option>
<option value="">the most ?</option>
</select>
</div>
<a href="profile35.html" class="button">
Next
</a>
</form>
</div>
</div>
<script src="js/scripts.js"></script>
</body>
</html>