-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
84 lines (67 loc) · 5.58 KB
/
template.html
File metadata and controls
84 lines (67 loc) · 5.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- If IE use the latest rendering engine -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Set the page to the width of the device and set the zoon level -->
<meta name="viewport" content="width = device-width, initial-scale = 1">
<title>Huzefa Rangwala @ Computer Science, George Mason University</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<style>
.jumbotron{
/* background-color:#2E2D88;
color:white; */
}
/* Adds borders for tabs */
.tab-content {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
padding: 10px;
}
.nav-tabs {
margin-bottom: 0;
}
</style>
</head>
<body>
<!--Navigation-->
<!--Navigation bar-->
<div class="container-fluid" id="nav-placeholder">
</div>
<script type="text/javascript">
$(function(){
$("#nav-placeholder").load("menus/topnav.html");
});
</script>
<!--end of Navigation bar-->
<!-- CONTAINERS -->
<!-- container puts padding around itself while container-fluid fills the whole screen. Bootstap grids require a container. -->
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
</div>
</div>
</div>
</li>
</ul>
<div class="tab-content">
<div id="superman" class="tab-pane fade in active">
<p>Superman is a fictional superhero appearing in American comic books published by DC Comics. </p>
</div>
<div id="batman" class="tab-pane fade">
<p>Batman is a fictional superhero appearing in American comic books published by DC Comics. </p>
</div>
<div id="flash" class="tab-pane fade">
<p>The Flash is a fictional superhero appearing in American comic books published by DC Comics. </p>
</div>
<div id="kidflash" class="tab-pane fade">
<p>Kid Flash is a fictional superhero appearing in American comic books published by DC Comics. </p>
</div>
</div>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>