-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·204 lines (190 loc) · 7.41 KB
/
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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html>
<html lang="en">
<head>
<title> NU Insurance </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="jquery.mThumbnailScroller.js"></script>
<link rel="stylesheet" href="jquery.mThumbnailScroller.css">
<script src="scoller.js"></script>
<script>
(function($){
$(window).load(function(){
$("#my-thumbs-list").mThumbnailScroller({
axis:"x"
});
});
})(jQuery);
</script>
<style>
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
width: 70%;
margin: auto;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">NU Insurance</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
<ul class="nav navbar-nav">
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Ask a Healthcare Question <span class="caret"></span></a>
<ul class="dropdown-menu ask">
<li>
<a href="askExpert.html"><img src = expert.png width="200";><br>Ask an Expert</a>
</li>
<li><a href="askCommunity.html"><img src = community.png width="200";><br>Ask the Community</a></li>
<li><a href="search.html"><img src = search.png width="200";><br>Search for an Answer</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Find a Plan <span class="caret"></span></a>
<ul class="dropdown-menu find">
<li><a href="searchPlan.html"><img src = search.png width="200";><br>Search for a Plan</a></li>
<li><a href="persPan.html"><img src = personal.png width="200";><br>Choose a Personalized Plan</a></li>
</ul>
</li>
<li class = "dropdown"><a href="dashboard.html">Your Portal</a></li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Help <span class="caret"></span></a>
<ul class="dropdown-menu help">
<li><a href="term.html">Common Terminology</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<!--<div class="container" id="homeImage">
<img src = "insurance.jpg"; width = "50%">
</div>-->
<div id="myCarousel" class="carousel" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<a href="askCommunity.html">
<img src="community.png" alt="community">
<div class="carousel-caption">
<h3>Ask the Community</h3>
<p>Ask our Community a question!</p>
</div>
</a>
</div>
<div class="item">
<a href="askExpert.html">
<img src="expert.png" alt="expert">
<div class="carousel-caption">
<h3>Ask an Expert</h3>
<p>For more complicated questions, <br>we suggest asking one of our experts</p>
</div>
<a/>
</div>
<div class="item">
<a href="search.html">
<img src="search.png" alt="search">
<div class="carousel-caption">
<h3>Search</h3>
<p>Think someone else had the same problem <br>you do? Search for past questions!</p>
</div>
</a>
</div>
<div class="item">
<a href="persPan.html">
<img src="personal.png" alt="personal">
<div class="carousel-caption">
<h3>Choose a Personal Plan</h3>
<p>Fill out a brief questionnaire in order to <br>recieve a list of plans tailored to your needs</p>
</div>
</a>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="container" id="threeColumns">
<div class="left-column">
<div class="panel panel-info">
<div class="panel-heading">Popular Plans</div>
<div class="panel-body">
<a>1. Blue Cross Blue Shield Individual</a><hr>
<a>2. Aetna Gold Coverage</a><hr>
<a>3. Aetna Silver Care Package</a><hr>
<a>4. United Health Silver Care Package</a><hr>
<a>5. Humana Family Bronze Plan</a><hr>
<a>6. PingAn Student Save</a><hr>
<div class="more">
<a href="searchPlan.html">  Search for More Plans</a>
</div>
</div>
</div>
</div>
<div class="middle-column">
<div class="panel panel-info">
<div class="panel-heading">Popular Questions</div>
<div class="panel-body">
<a>What are the differences between premium and deductible?</a><hr>
<a>What are the benifits of choosing a family plan over an individual plan?</a><hr>
<a>How should an international student navigate through healthcare plans?</a><hr>
<a>How can the new policy change in Illinois affect UnitedHealth plan users?</a><hr>
<div class="more">
<a href="search.html">Browse More Questions</a>
</div>
</div>
</div>
</div>
<div class="right-column">
<div class="panel panel-info">
<div class="panel-heading">Healthcare News</div>
<div class="panel-body">
<a>Americans like single-payer healthcare plans</a><hr>
<a>Bernie Sander's healthcare plan can actually hurt the poor</a><hr>
<a>Super Tuesday may define the coming health care clash</a><hr>
<a>Illinois passes new bill to limit use of medicare in certain areas</a><hr>
<a>Overnight Healthcare: What would TrumpCare look like?</a>
</div>
</div>
</div>
</div>
<!--
<div id="my-thumbs-list">
<ul>
<li><a href="askExpert.html"><img src="expert.png" /></a></li>
<li><a href="search.html"><img src="search.png" /></a></li>
<li><a href="askCommunity.html"><img src="community.png" /></a></li>
<li><a href="persPan.html"><img src="personal.png" width="250"/></a></li>
<li><a href="askExpert.html"><img src="expert.png" /></a></li>
<li><a href="search.html"><img src="search.png" /></a></li>
<li><a href="askCommunity.html"><img src="community.png" /></a></li>
<li><a href="persPan.html"><img src="personal.png" width="250"/></a></li>
<li><a href="askExpert.html"><img src="expert.png" /></a></li>
<li><a href="search.html"><img src="search.png" /></a></li>
<li><a href="askCommunity.html"><img src="community.png" /></a></li>
</ul>
</div>
//-->
</body>
</html>