-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Language" content="en-US" />
<!---------------------------------->
<title sep="-">Web Site</title>
<!---------------------------------->
<link href="./static/css/bootstrap.min.css" rel="stylesheet" />
<link href="./static/css/style.css" rel="stylesheet" />
<script type="module" src="./static/js/script.js"></script>
</head>
<body>
<div class="alert-danger container navbar-fixed-bottom">
No network connection.
</div>
<nav class="nav nav-pills container">
<li link="home" class="active"><a>Home</a></li>
<li link="page1"><a>Page 1</a></li>
<li link="page2"><a>Page 2</a></li>
</nav>
<main class="container"></main>
</body>
</html>