-
Notifications
You must be signed in to change notification settings - Fork 3
/
home.html
66 lines (61 loc) · 2.12 KB
/
home.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Home - Phoner</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="assets/thumbnail.png" type="image/png" />
<style>
* {
box-sizing: border-box;
}
/* The hero image */
.hero-image {
/* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://bit.ly/2TPZDvd");
/* Position and center the image to scale nicely on all screens */
background-position: center;
background-repeat: no-repeat;
background-size: auto;
}
</style>
</head>
<body style="overflow: hidden;">
<div class="busy-loader" id="loader">
<div class="w-ball-wrapper ball-1">
<div class="w-ball"></div>
</div>
<div class="w-ball-wrapper ball-2">
<div class="w-ball"></div>
</div>
<div class="w-ball-wrapper ball-3">
<div class="w-ball"></div>
</div>
<div class="w-ball-wrapper ball-4">
<div class="w-ball"></div>
</div>
<div class="w-ball-wrapper ball-5">
<div class=" w-ball"></div>
</div>
</div>
<div id="content" style="display: none;">
<nav>
<a href="home.html" class="active" title="Home" aria-label="Home">Home</a>
<a href="articles.html" title="Articles" aria-label="Articles">Articles</a>
<a href="specs.html" title="Specs" aria-label="Specs">Specs</a>
<a href="about.html" title="About" aria-label="About">About</a>
<a href="feedback.html" title="Feedback" aria-label="Feedback">Feedback</a>
</nav>
<iframe src="https://sway.office.com/s/DUOTWdDC32CcU4H5/embed" title="Intro" onload="onLoad()"></iframe>
</div>
<script>
function onLoad()
{
document.getElementById('loader').style.display = "none";
document.getElementById('content').style.display = "block";
document.getElementById('content').style.scrollBehavior = "initial";
}
</script>
</body>
</html>