forked from geomarts/simple-panels-animation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
70 lines (65 loc) · 1.63 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
/>
<link rel="stylesheet" href="main.css" />
<title>Simple JavaScript Page Loading Animation</title>
</head>
<body>
<header class="page-header">
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li class="active">
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<ul class="panels">
<li class="panel" style="--index: 3"></li>
<li class="panel" style="--index: 2"></li>
<li class="panel" style="--index: 1"></li>
<li class="panel" style="--index: 0"></li>
<li class="panel" style="--index: 1"></li>
<li class="panel" style="--index: 2"></li>
<li class="panel" style="--index: 3"></li>
</ul>
<main class="page-main">
<div>
<h1>About Page</h1>
<p>
Another JavaScript loading animation
<a
href="https://tutsplus.github.io/panels-animation/"
target="_blank"
>here</a
>
</p>
</div>
</main>
<footer class="page-footer">
<span>made by </span>
<a href="https://georgemartsoukos.com/" target="_blank">
<img
width="24"
height="24"
src="https://assets.codepen.io/162656/george-martsoukos-small-logo.svg"
alt="George Martsoukos logo"
/>
</a>
</footer>
<script src="main.js"></script>
</body>
</html>