-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbreaking-news.html
More file actions
33 lines (32 loc) · 1.09 KB
/
breaking-news.html
File metadata and controls
33 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript Game</title>
<link rel="icon" href="data:image/gif;base64,R0lGODlhAQABAAAAACwAAAAAAQABAAA=">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style/breaking-news.css">
<script src="js/breaking-news.js"></script>
</head>
<body>
<audio id="xmas-sound" src="img/xmas.mp3"></audio>
<audio id="drama-sound" src="img/drama.mp3"></audio>
<div class="container">
<div id="start-intro"></div>
<div class="xmas">
<div class="headline">One day before Christmas, 2020...</div>
</div>
<div class="drama hide">
<div class="breaking">Breaking</div>
<div class="news">News</div>
<div class="newspaper">
<img src="img/newspaper1.jpg" alt="">
</div>
</div>
<div class="instructions hide">
<a id="start-game" href="index.html">Help Santa to collect all the lost gifts!</a>
</div>
</div>
</body>
</html>