forked from rohni/browser-quiz-project-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 818 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Quiz Application</title>
<link href="./public/style.css" rel="stylesheet" />
</head>
<body>
<img
src="https://assets-global.website-files.com/62745a1007e49e2461fb7ecd/62745a1007e49e6f2afb7fd1_HYF.svg"
alt=""
class="HYF"
/>
<div id="user-interface" class="centered"></div>
<div class="quiz-timer">
<div class="time"></div>
</div>
<script type="module" src="src/app.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.4/gsap.min.js"
integrity="sha512-EZI2cBcGPnmR89wTgVnN3602Yyi7muWo8y1B3a8WmIv1J9tYG+udH4LvmYjLiGp37yHB7FfaPBo8ly178m9g4Q=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</body>
</html>