forked from samsong2/CourseProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.05 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<style type="text/css">
.searchbox{
margin-top: 6%;
margin-left: 33%;
margin-right: 5%;
}
</style>
</head>
<body>
<h1 align='center'>Video Search</h1>
<form method="POST">
<div class="row">
<div class="col-xs-6 col-md-4 searchbox">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" name="query" align="center"/>
<div class="input-group-btn">
<button class="btn btn-primary" type="submit">
<span class="glyphicon glyphicon-search"></span>
</button>
</div>
</div>
</div>
</div>
</form>
</body>
</html>