-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
35 lines (32 loc) · 1.26 KB
/
main.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
<!DOCTYPE html>
<head>
<title>Menu and Video</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<video autoplay loop>
<source src="content/Woods.mp4" type="video/mp4" poster="content/NY-Static.jpg"/>
</video>
<div class="divCenter">
<form class="form" role="search">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" name="srch-term" id="srch-term">
<div class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button>
</div>
</div>
</form>
</div>
<input type="checkbox" id="sidebartoggler" name="" value="">
<div class="mySideBard">
<ul>
<li class="liTitle">Valencia</li>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Clients</a></li>
<li><a href="#">Contact us</a></li>
</ul>
</div>
<label for="sidebartoggler" class="labelTogler"><i class="glyphicon glyphicon-th-list"></i></label>
</body>