-
Notifications
You must be signed in to change notification settings - Fork 393
/
Copy pathindex.html
36 lines (35 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<nav class="navbar">
Page navigation
</nav>
<section id="section1" class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Section1 title</h3>
</div>
<div class="panel-body">
Section1 content
</div>
<footer class="panel-footer">
Section1 footer
</footer>
</section>
<section id="section2" class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Section2 title</h3>
</div>
<div class="panel-body">
Section2 content
</div>
<footer class="panel-footer">
Section2 footer
</footer>
</section>
<footer class="navbar">
Page footer
</footer>
</body>
</html>