-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (124 loc) · 4.08 KB
/
index.html
File metadata and controls
148 lines (124 loc) · 4.08 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typeform</title>
<!-- Bootstrap for percentage bar -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Direct access to Font Awesome icons -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet" media="screen">
<!-- Custom styles CSS -->
<link href="assets/css/style.css" rel="stylesheet" media="screen">
<!-- Load materializecss -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/css/materialize.min.css">
<link href="assets/css/animate.css" rel="stylesheet" media="screen">
<style>
html {
scroll-behavior: smooth;
}
/*when hovering an item:*/
.autocomplete-items div:hover {
background-color: DodgerBlue;
}
/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
background-color: DodgerBlue !important;
color: #ffffff;
}
</style>
</head>
<body>
<!-- Navigation start -->
<!-- Navigation end -->
<!-- Section 1 Start -->
<section id="section1" class="pfblock pfblock-gray formAll" >
<div class="container">
<div class="row">
<!-- FA icon -->
<div class="col s12 m12 l4 ">
<span class="icon major style1 fa-user"></span>
</div>
<!-- Input -->
<div class="col s12 m12 l6 text-left"><br><br>
<form autocomplete="off" onsubmit="return (validateCampus());">
<div class="autocomplete" style="width:400px;">
<input id="myInput1" type="text" placeholder="i.e. Baruch College" autofocus="autofocus">
</div>
</form>
<label ><div class="question">Enter Your Campus</div></label>
</div>
<!--Progress Bar -->
<div class="col s12 m12 l12"><br><br>
<div class="progress" style="height: 18px;">
<div class="progress-bar progress-bar-striped" role="progressbar" style="width: 25%" >25%</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 1 end -->
<!-- Section 2 Start -->
<section id="section2" class="pfblock pfblock-gray formAll" >
<div class="container">
<div class="row">
<!-- FA icon -->
<div class="col s12 m12 l4 ">
<span class="icon major style1 fa-user"></span>
</div>
<!-- Input -->
<div class="col s12 m12 l6 text-left"><br><br>
<form autocomplete="off" onsubmit="return (validateMajor());" >
<div class="autocomplete" style="width:400px;">
<input id="myInput2" type="text" placeholder="i.e. Computer Science" autofocus="autofocus">
</div>
</form>
<label ><div class="question">Enter Your Major</div></label>
</div>
<!--Progress Bar -->
<div class="col s12 m12 l12"><br><br>
<div class="progress" style="height: 18px;">
<div class="progress-bar progress-bar-striped" role="progressbar" style="width: 50%" >50%</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 2 end -->
<!-- Section 3 Start -->
<section id="section3" class="pfblock pfblock-gray formAll" >
<div class="container">
<div class="row">
<!-- FA icon -->
<div class="col s12 m12 l4 ">
<span class="icon major style1 fa-user"></span>
</div>
<!-- Input -->
<div class="col s12 m12 l6 text-left"><br><br>
<form autocomplete="off" onsubmit="return (validateTerm());" >
<div class="autocomplete" style="width:400px;">
<input id="myInput3" type="text" placeholder="i.e. Spring 2020" autofocus="autofocus">
</div>
</form>
<label ><div class="question">Enter Your Start Date</div></label>
</div>
<!--Progress Bar -->
<div class="col s12 m12 l12"><br><br>
<div class="progress" style="height: 18px;">
<div class="progress-bar progress-bar-striped" role="progressbar" style="width: 75%" >75%</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 3 end -->
<!-- Section 4 start-->
<section id="section4">
<!-- RESULTS neeed css and elements-->
<h1>Results here</h1>
</section>
<!-- section 4 end -->
<!-- Footer here -->
<script src="assets/main.js"> </script>
</body>
</html>