-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (85 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Declared Vars To Go Here -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Metadata -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="mysource_files/favicon.ico">
<!-- Page Name and Site Name -->
<title>Page Name - Squiz Matrix HTML Example</title>
<!-- CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="mysource_files/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="header clearfix" style="background-color: #ffffff">
<!-- Main Menu -->
<nav>
<ul class="nav nav-pills pull-right">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<!-- Site Name -->
<h1 class="h3 text-muted">Site Name</h1>
<!-- Breadcrumbs -->
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Level 1</a></li>
<li class="active">Level 2</li>
</ol>
</header>
<div class="page-heading">
<!-- Page Heading -->
<h1>Page Heading</h1>
</div>
<div class="row">
<div class="col-sm-3">
<!-- Sub Navigation -->
<ul class="nav nav-pills nav-stacked">
<li><a href="#">Level 2</a></li>
<li class="active"><a href="#">Level 2</a>
<ul>
<li><a href="#">Level 3</a></li>
<li><a href="#">Level 3</a></li>
<li><a href="#">Level 3</a></li>
</ul>
</li>
<li><a href="#">Level 2</a></li>
</ul>
</div>
<div class="col-sm-6">
<div class="page-contents">
<!-- Design Body -->
<h2>Sub Heading</h2>
<p>Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.</p>
<h4>Sub Heading</h4>
<p>Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.</p>
<h4>Sub Heading</h4>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
</div>
</div>
<div class="col-sm-3">
<!-- Login Section -->
<h2>Login</h2>
<!-- Search Section -->
<h2>Search</h2>
<!-- Nested Right Column Content -->
</div>
</div>
<footer class="footer">
<p class="pull-right">
<!-- Last Updated Design Area-->
Last Updated: Wednesday, January 6, 2016
</p>
<p>© 2016 Company, Inc.</p>
</footer>
</div> <!-- /container -->
</body>
</html>