-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (50 loc) · 1.99 KB
/
index.html
File metadata and controls
62 lines (50 loc) · 1.99 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animal Party</title>
<link href='https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css' rel='stylesheet'
integrity='sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD' crossorigin='anonymous'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="https://em-content.zobj.net/source/microsoft-3D-fluent/406/party-popper_1f389.png">
</head>
<body>
<nav class="text-center p-2 fs-4 bg-dark border-bottom border-danger border-2">
Animal Party 🎉🍾
</nav>
<main class="container-fluid">
<section class="row">
<div class="col-md-6 border p-2">
<h5>🌲Lost Woods</h5>
<div id="🌲forest-animals" class="fs-3"></div>
<small id="🌲forest-count">0</small>
</div>
<div class="col-md-6 border p-2">
<h5>🌵 Savannah (Sponsored by Nike)</h5>
<div id="🌵desert-animals" class="fs-3"></div>
<small id="🌵desert-count">0</small>
</div>
<div class="col-md-6 border p-2">
<h5>💦Water World</h5>
<div id="💦water-animals" class="fs-3"></div>
<small id="💦water-count">0</small>
</div>
<div class="col-md-6 border p-2">
<h5>⛄Winter Wonderland</h5>
<div id="⛄arctic-animals" class="fs-3"></div>
<small id="⛄arctic-count">0</small>
</div>
<div class="col-md-6 border p-2">
<h5>🌋My Doom Middle earth</h5>
<div id="🌋mtdoom-animals" class="fs-3"></div>
<small id="🌋mtdoom-count">0</small>
</div>
<button onclick="PARTY()" class="btn btn-primary">PARTY 🍾🎉</button>
</section>
</main>
<!-- <script src="example.js"></script> -->
<script src="app.js"></script>
</body>
</html>