-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage3.html
executable file
·49 lines (38 loc) · 1.15 KB
/
page3.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Page 3</title>
<meta name="description" content="This is a description">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container">
<header>
<ul>
<li><a href=page1.html>Page 1</a></li>
<li><a href=page2.html>Page 2</a></li>
<li><a href=page3.html>Page 3</a></li>
<li><a href=page4.html>Page 4</a></li>
<li><a href=page5.html>Page 5</a></li>
</ul>
</header>
<div id="main" role="main">
<h1>Page 3</h1>
<p><a class="addBookmark" href="#">Add bookmark</a></p>
</div>
<footer>
<div id="bookmarks">
<h2>Bookmarks</h2>
<div class="bookmarkList">
</div>
<a class="removeBookmarks" href="#">Remove all bookmarks</a>
</div>
</footer>
</div> <!--! end of #container -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script>
<script defer src="js/pollyfill.js"></script>
<script defer src="js/script.js"></script>
</body>
</html>