-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathindex.html
95 lines (90 loc) · 3.8 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!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>Weekly Web Dev Challenge</title>
</head>
<body>
<nav-component><!-- imported from components/nav.js --></nav-component>
<div class="page-container">
<header>
<!-- <a role="button" rel="noopener" href="https://www.polltab.com/WkfVTkbJoa" class="btn btn-poll" data-tooltip="Vote closes 5:15pm GMT today" target="_blank">Vote here!</a> -->
<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 class="header-title">Weekly Web Dev Challenge Submissions</h1>
<p class="subtitle">
<a target="_blank" rel="noopener"
href="https://scrimba.com/learn/weeklychallenge/the-weekly-web-dev-challenge-retro-screensaver-latest-challenge-code-to-win-co4544818831cfb8733bb4632">
Retro Screensaver 📺
</a>
</p>
<div class="countdown-submissions">
<p>Challenge Countdown: <strong id="challenge-countdown-display">loading...</strong></p>
<p id="submission-count-display"></p>
</div>
</header>
<!-- Challenge Container -->
<div class="challenge-container">
<!-- Submission will be injected here by javascript -->
<div id="placeholder0" class="submission">
<div class="placeholder">
<p>Awesome submission coming soon! </p>
</div>
</div>
<div id="placeholder1" class="submission">
<div class="placeholder">
<p>Awesome submission coming soon! </p>
</div>
</div>
<div id="placeholder2" class="submission">
<div class="placeholder">
<p>Awesome submission coming soon! </p>
</div>
</div>
<div id="placeholder3" class="submission">
<div class="placeholder">
<p>Awesome submission coming soon! </p>
</div>
</div>
<div id="placeholder4" class="submission">
<div class="placeholder">
<p>Awesome submission coming soon! </p>
</div>
</div>
<div id="placeholder5" class="submission">
<div class="placeholder">
<p>Awesome submission coming soon! </p>
</div>
</div>
<div id="placeholder6" class="submission">
<div class="placeholder">
<p>Awesome submission coming soon! </p>
</div>
</div>
<div class="submission take-part">
<a role="button" rel="noopener"
href="https://scrimba.com/learn/weeklychallenge"
target="_blank">
<p>New challenges soon!</p>
</a>
</div>
<div id="prev_challenges" class="prev_challenges">
<p>Previous challenges 👀</p>
</div>
</div>
</div>
<footer-component><!-- imported from components/footer.js REQUIRES pumpkin.js --></footer-component>
<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="index.js" defer></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>