-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.php
60 lines (54 loc) · 2.02 KB
/
page2.php
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
<!DOCTYPE html>
<html lang="en"class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Offline Apps Demo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css">
<link rel="stylesheet" href="libs/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="container">
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li><a href="index.php">Index</a></li>
<li><a href="page1.php">Page1</a></li>
<li role="presentation"><a href="https://github.com/sgoyalnet/appoffline" target="_blank">Get the code <i class="fa fa-external-link" aria-hidden="true"></i></a></li>
<li role="presentation"><a href="http://sgoyal.net/2016/09/02/appoffline">Back to blog</a></li>
</ul>
</nav>
<h3 class="text-muted">Offline Apps Demo || Page2</h3>
</div>
<div class="container">
<div class="row">
<div class="col col-md-6">
<img width="100%" src= "images/internet-of-things-2.jpg" />
</div>
<div class="col col-md-6">
Navigate to Index and Page 1 to see the demo pages.
<br/>
Switch off your internet and refresh the website. Your full website should be working.
</div>
</div>
</div>
<!-- /container -->
<footer class="footer">
<p>Sample images are picked up from internet. All of the images belongs to their respective owners.</p>
</footer>
</div>
<div class="online-status green">
Online
</div>
<!-- /container -->
<script src="libs/jquery-2.2.4.min.js"></script>
<script src="libs/bootstrap.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>