-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
52 lines (48 loc) · 1.58 KB
/
Copy pathoffline.html
File metadata and controls
52 lines (48 loc) · 1.58 KB
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
<!doctype html>
<html>
<head>
<!-- Bootstrap required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>Offline - Stitch Kit</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style>
.blu{
color:black;
background-color:#ADD8E6;
}
</style>
</head>
<body style="background-color:#F0E68C;">
<header>
<div class='container-fluid'>
<div class='container'>
<img src="/stitchkit.png" class="img-fluid">
</div>
</div>
</header>
<div class='row my-2'>
<div class='col-2'>
<a href="/index.html"><img class='text-right my-2' style="width:2rem" src='chevron-circle-left-solid.svg'></a>
</div>
<div class='col-10'>
<a href="/index.html" class="btn btn-outline-primary btn-lg btn-block text-justify font-weight-bold blu" role="button">Back</a>
</div>
</div>
<div class='container-fluid'>
<div class="alert alert-danger" role="alert">
<h4 class="alert-heading">Oops!</h4>
<p>It looks like you're offline. Try again when you have a connection.</p>
</div>
</div>
<hr>
<footer class="fixed-bottom">
<div class='small text-muted'>
Copyright © 2019 <a class='text-muted' title='https://ensadi.com' href='https://ensadi.com/home' target='_blank'>Ensadi LLC
<a class='text-muted' href="/about.html">(About)</a>
</div>
</footer>
</body>
</html>