-
Notifications
You must be signed in to change notification settings - Fork 40
/
hall-of-fame.html
46 lines (42 loc) · 1.99 KB
/
hall-of-fame.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css" />
<link rel="stylesheet" href="index.css" />
<link rel="icon" type="img/png" href="imgs/pumpkin.png" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.1/css/all.css" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<title>Hall of Fame - Weekly Web Dev Challenge</title>
</head>
<body class="gradient">
<!-- Start of Nav -->
<nav-component>
<!-- imported from components/nav.js -->
</nav-component>
<!-- End of Nav -->
<div class="page-container">
<header>
<a href="https://scrimba.com/" rel="noopener" target="_blank" class="home-logo"><img class="logo"
src="../../../imgs/scrimba-black.svg" alt="scrimba-logo"></a>
<h1>The Hall of Fame</h1>
<h2>Each of these apps was crowned winner of the weekly Web Dev Challenge 🏆🎉</h2>
</header>
<div class="challenge-container" id="hall-of-fame">
<!-- Submission will be injected here by javascript -->
</div>
</div>
<!-- Start of Footer -->
<footer-component>
<!-- imported from components/footer.js REQUIRES pumpkin.js -->
</footer-component>
<!-- End of Footer -->
<script type="module" src="components/nav.js" type="text/javascript" defer></script>
<script type="module" src="components/footer.js" type="text/javascript" defer></script>
<script type="module" src="displayHallOfFame.js"></script>
<script type="module" src="pumpkin.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/party-js@latest/bundle/party.min.js"></script>
</body>
</html>