Initial HTML skeleton

This commit is contained in:
LinlyBoi
2023-11-19 17:35:20 +02:00
commit f5a2377ed4

45
index.html Normal file
View File

@@ -0,0 +1,45 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Quiz App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">
You are using an <strong>outdated</strong> browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a> to improve
your experience.
</p>
<![endif]-->
<h1> Quiz App </h1>
<div id="privacy-violation">
<!-- Name ID etc -->
</div>
<div id="quiz-screen">
<!-- The quiz itself -->
<div id="question">
<!-- Question card -->
</div>
<div id="choices">
<!-- Awesome for loop for answers -->
</div>
<div id="score-screen">
<!-- End of quiz screen-->
</div>
<div id="controls">
<!-- the things for submit and previous questions -->
</div>
</body>
</html>