Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

olatoquiz #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OlatoQuiz</title>
<link rel="stylesheet" href="css/styles.css" />
<script src="js/script.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">OlatoQuiz</a></li>
</ul>
</nav>
</header>
<main>
<section class="container">
<p class="top-bars">
Welcome To Olato Quiz!
</p>
<p>
Let Test Your Tech Knowledge
</p>
<div id="error"></div>
<form name="myForm" action="start.html" onsubmit="return handleSubmit()" method="POST">
<input
placeholder="username"
name="input"
id="input"
type="text"
maxlength="15"
aria-autocomplete="off"

/>
<button type="submit">Start Quiz</button>
</form>
</section>
</main>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<footer>
Designed by olatoCode &copy; OlatoQuiz
</footer>
</body>
</html>
53 changes: 53 additions & 0 deletions start.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OlatoQuiz</title>
<link rel="stylesheet" href="css/styles.css" />
<script src="js/result.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">OlatoQuiz</a></li>
</ul>
</nav>
</header>
<main>
<section class="container-quiz">
<div class="fit">
<div>
Hi,
</div>
<div id="result"></div>
</div>
<div class="grid">
<div id="quiz">
<p id="question"></p>

<div class="buttons">
<button id="btn0"><span id="choice0"></span></button>
<button id="btn1"><span id="choice1"></span></button>
<button id="btn2"><span id="choice2"></span></button>
<button id="btn3"><span id="choice3"></span></button>
</div>

<hr style="color: darkcyan; margin-top: 5px" />
<div>
<p id="progress">
Question x of y
</p>
</div>
</div>
</div>
</section>
</main>
<footer>
Designed by olatoCode &copy; OlatoQuiz
</footer>
<script src="js/quiz.js"></script>
</body>
</html>