-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile2.html
55 lines (39 loc) · 1.3 KB
/
profile2.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
<!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">
<div class="profile2">
<form>
<div class="who">
<h3>I am a</h3>
</div>
<div class='checkbox-container'>
<input type="radio" id="owner" name="who-are">
<label for="owner" class="first-checkbox">
Business Owner
</label>
<input type="radio" id="user" name="who-are">
<label for="user" class="second-checkbox">
Individual
</label>
</div>
</div> <!-- end of profile2 -->
<a href="profile3.html" class="button">
Continue
</a>
</form>
</div> <!-- end of content -->
</div> <!-- end of smartphone -->
<script src="js/scripts.js"></script>
</body>
</html>