-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecisionMaking.html
86 lines (72 loc) · 3.12 KB
/
decisionMaking.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Decision Making</title>
<link rel="icon" type="image/x-icon" href="./favicon/favicon-16x16.png" />
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="./css/decisionMakingStyle.css">
<script src="script.js" defer></script>
</head>
<body>
<main>
<div class="container">
<section id="img">
<img src="./images/two.png">
</section>
<div id="text_btn">
<section id="text">
<h3>How do you decide to invest?</h3>
<div class="custom_select">
<select name="format" id="format">
<option selected disabled></option>
<option value="notCreated"> I have not invested yet</option>
<option value="notActive"> I invest based on studies</option>
<option value="active"> I invest base on my feeling</option>
</select>
<span class="custom-arrow"></span>
</div>
</section>
<section id="text">
<h3>What resources have you used or are you using for your training?</h3>
<div class="container2">
<label class="custom-checkbox">
<input type="checkbox" id="check1" onclick="enable()"> Books and articles
<span class="checkmark"></span>
</label>
</div>
<div class="container2">
<label class="custom-checkbox">
<input type="checkbox" id="check2" onclick="enable()"> YouTube tutorial videos
<span class="checkmark"></span>
</label>
</div>
<div class="container2">
<label class="custom-checkbox">
<input type="checkbox" id="check3" onclick="enable()"> Online of face to face courses
<span class="checkmark"></span>
</label>
</div>
<div class="container2">
<label class="custom-checkbox">
<input type="checkbox" id="check4" onclick="enable()"> Experience with little investment
<span class="checkmark"></span>
</label>
</div>
</section>
<section id="text">
<div id="btns">
<a href="accountStatus.html"><button>Back</button></a>
<a href="comments.html"><button disabled="true" id="nextBtn" >Next</button></a>
</div>
<div id="btns">
<a href="comments.html"><button id="skipBtn">Skip</button></a>
</div>
</section>
</div>
</div>
</main>
</body>
</html>