-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Bubble Wrap</title>
<meta name="description" content="Simple, relaxing antistress website">
<link rel="stylesheet" href="Styles/mainStyle.css">
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<noscript>JavaScript is required for this game to work.</noscript>
<div id="header">
<button onclick="Refresh()" id="refresh" aria-label="Refresh">
<img src="Icons/refresh.png" id="refreshIcon" alt="Refresh">
</button>
<h1 id="popCount"></h1>
</div>
<div id="bubblesLayout">
</div>
<div id="links">
<a class="link" href="https://store.steampowered.com/app/2718700/Bubble_Wrap/">Steam Version</a>
<a class="link" href="https://play.google.com/store/apps/details?id=com.donutask.bubblewrap">Android App</a>
<a class="link" href="https://www.youtube.com/channel/UC0OBisfM_ZRwf0sfDJ1Q0YQ">YouTube</a>
<a class="link" href="https://github.com/Donutask/Bubble-Wrap-Web">Source Code</a>
<a class="link" href="https://donutask.com">Homepage</a>
</div>
<script src="script.js"></script>
</body>
</html>