-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.25 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>#100devs reminder</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="logo.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap" rel="stylesheet">
<script src="main.js"></script>
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
</head>
<body onload="loaded()">
<!-- <h1>#100devs Next Session Starts In:</h1> -->
<h1>#100devs Homework Doom Counter:</h1>
<span class="reveal"><button id="reveal">Click here to reveal the timer!</button></span>
<div id="timer">
<div id="days"></div>
<div><img class="imgSmall" src="logo.png" width="50px" height="50px"></div>
<div id="hours"></div>
<div><img class="imgSmall" src="logo.png" width="50px" height="50px"></div>
<div id="minutes"></div>
<div><img class="imgSmall" src="logo.png" width="50px" height="50px"></div>
<div id="seconds"></div>
</div>
<footer></footer>
</body>
</html>