Skip to content
Snippets Groups Projects
Commit 24cf9856 authored by ea654's avatar ea654
Browse files

Update file index.html

parent e832d7da
Branches
No related tags found
No related merge requests found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trivia Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="main">
<header class="header">
<a href="#" class="logo">Welcome to the Trivia Game</a>
<nav class="navbar">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Leaderboards</a>
</nav>
</header>
<section class="home">
<div class="home-content">
<h1>Trivia Game</h1>
<p>Select your options and click Play</p>
<button class="start-button" id="startGame">Play</button>
</div>
</section>
<section id="gameArea" style="display:none;">
<h2 id="question">Question will appear here</h2>
<div id="options">Options will appear here</div>
<p id="score">Score: 0</p>
<button id="nextQuestion" style="display:none;">Next Question</button>
</section>
</main>
<script src="/socket.io/socket.io.js"></script>
<script src="script.js"></script>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment