-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
26 lines (25 loc) · 775 Bytes
/
offline.html
File metadata and controls
26 lines (25 loc) · 775 Bytes
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" manifest="manifest.appcache">
<head>
<title>read offline app</title>
<meta charset="UTF-8">
<script src="javascript/jquery-1.8.2.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="wrapper">
<nav><a href="index.html">Home</a> <a href="page1.html">HTML</a> <a href="page2.html">CSS</a> <a href="page3.html">WEBFONTS</a> <a href="offline.html">offline</a> </nav>
<p id="infooff">Get in this page your saved pages. Actual connexion status : <span>inline</span>.</p>
<ul id="sheetList">
</ul>
<article id="articletext">
</article>
</div>
<script src="javascript/readOfflineApp.js"></script>
<script>
$(document).ready(function() {
pageready();
});
</script>
</body>
</html>