This repository has been archived by the owner on Dec 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (102 loc) · 4.26 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Some website - Home</title>
<link href="styles/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="styles/style.css" rel="stylesheet" type="text/css" />
<link href="styles/parallax.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="card center" style="height:800px; background-color: #111;">
<div class="parallax center" style="--offset: -75px;">
<img class="parallax-item" style="--scroll-scale: calc(1 + 0.15*var(--id)); filter: saturate(calc(1 - 0.2*var(--id))); z-index: calc(var(--id) * -1)" src="resources/world-outline.png" repeat="6" />
<div class="container jumbotron parallax-item white center p-mid">
<h1>The Internet and the World Wide Web</h1>
<h2>owo</h2>
</div>
</div>
</div>
<div class="card page-card" style="background-color: slateblue;">
<div class="parallax center">
<div class="parallax-item bg-item p-mid">
<img src="resources/book.jpeg" class="darkened-image">
<div class="darken" style="z-index: 1;"></div>
</div>
<div class="container jumbotron parallax-item p-fore">
<h1>Glossary</h1>
<p>Terms and definitions that will be used :)</p>
<a href="glossary.html">Go to glossary</a>
</div>
</div>
</div>
<div class="card container jumbotron" style="height: 200px; margin: 0; background-color: #ee8;">
<div class="parallax center">
<h1 class="parallax-item" style="--scroll-scale: 0.8;">Articles</h1>
</div>
</div>
<div class="card page-card" style="background-color: lightsalmon;">
<div class="parallax center">
<div class="parallax-item bg-item p-mid" style="background-color: salmon;"></div>
<div class="container jumbotron parallax-item right-align p-fore">
<h1>Sir Tim Berners-Lee</h1>
<p>The innovator that invented the web as we know it</p>
<a href="articles/berners-lee.html">Go to article</a>
</div>
</div>
</div>
<div class="card page-card" style="background-color: turquoise;">
<div class="parallax center">
<div class="parallax-item bg-item p-mid" style="background-color: lightseagreen;"></div>
<div class="container jumbotron parallax-item p-fore">
<h1>Data Transmission</h1>
<p>No data transmission = no gpu :(</p>
<a href="articles/data-transmission.html">Go to article</a>
</div>
</div>
</div>
<div class="card page-card" style="background-color: #fcd667;">
<div class="parallax center">
<div class="parallax-item bg-item p-mid" style="background-color: goldenrod;"></div>
<div class="container jumbotron parallax-item right-align p-fore">
<h1>How web browsers work</h1>
<p>How signals get to your home</p>
<a href="articles/web-browser.html">Go to article</a>
</div>
</div>
</div>
<div class="card page-card" style="background-color: #48d499;">
<div class="parallax center">
<div class="parallax-item bg-item p-mid" style="background-color: seagreen;"></div>
<div class="container jumbotron parallax-item p-fore">
<h1>The secret of HTTPS</h1>
<p>How to securely send data over the Web</p>
<a href="articles/https.html">Go to article</a>
</div>
</div>
</div>
<div class="card page-card" style="background-color: slateblue;">
<div class="parallax center">
<div class="parallax-item bg-item p-mid">
<img src="resources/code.jpg" class="darkened-image">
<div class="darken" style="z-index: 1;"></div>
</div>
<div class="container jumbotron parallax-item p-fore">
<h1>Behind the scenes</h1>
<p>Some of the systems used to create the webpage</p>
<a href="behind-the-scenes.html">Go to page</a>
</div>
</div>
</div>
<footer style="background-color: #ee8;">
<p>Content is 100% by me</p>
<p style="font-size: 1.5px;">owo</p>
<!-- You know the rules and so do I -->
<a href="https://youtu.be/dQw4w9WgXcQ">©Daniel Gu. All rights reserved.</a>
</footer>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/bootstrap.min.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>