This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (67 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<script src="https://code.jquery.com/jquery-3.6.1.min.js"></script>
<script src="/js/notification.js"></script>
<link rel="stylesheet" href="./style/home.css">
<link rel="stylesheet" href="notification.css">
<link rel="manifest" href="./manifest.webmanifest" />
<link rel="icon" type="image/x-icon" href="/img/favicon.png">
<link
href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- This is not used for the demo
<div class="container">
<div class="push__wrapper">
<div class="push__box">
<div class="push__content">
<div class="push__top">
<div class="col">
<div class="push__imgwrap">
<img class="push__icon" src="./img/favicon.png" alt="logo">
</div>
<span class="push__title">Optifood: <a href="/pages/bar_code/index.html">Start Challenge</a></span>
</div>
<div class="col">
<div class="push__time">now</div>
</div>
</div>
<div class="push__main">
<div class="push__person">Elias Medawar</div>
<p>New challenge has arrived </p>
</div>
</div>
</div>
</div>
</div>
-->
<header>
<img src="/img/app-background.png" class="background-image">
</header>
<main>
<div id="header">
<h1>Leaderboard</h1>
</div>
<div id="leaderboard">
<div class="ribbon"></div>
<div id="ranking"></div>
<div id="buttons">
<button id='strtChallenge'class="continue">Quiz Starten</button>
</div>
</div>
</main>
<script type="text/javascript" src="js/login.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/questions.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/usrCall.js"></script>
</body>
</html>