-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 1.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
<html>
<head>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="wrapper">
<div class="story">A long time ago in a galaxy far
<br> far away.
<span class="dots">...</span>
</div>
<img class="logo" src="logo.png" alt="">
<div class="text">
<p>
It is a period of civil war. Rebel spaceships, striking from a hidden base, have won their first victory against the evil
Galactic Empire.
</p>
<p>
During the battle, Rebel spies managed to steal secret plans to the Empire's ultimate weapon, the DEATH STAR, an armored
space station with enough power to destroy an entire planet.
</p>
<p>
Pursued by the Empire's sinister agents, Princess Leia races home aboard her starship, custodian of the stolen plan that
can save her people and restore freedom to the galaxy....
</p>
</div>
</div>
<script>
setTimeout(() => {
new Audio('song.ogg').play();
}, 3000);
</script>
</body>
</html>