forked from COPS-IITBHU/Debugit_2022
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.22 KB
/
index.html
File metadata and controls
28 lines (27 loc) · 1.22 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Quiz Game</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/5bc82e69da.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
Welcome to SHUGA
</header>
<div class="container">
<h1>Ready To Play?</h1>
<div class="card">
<div class="form">
<form>
<!-- <input type="text" required class="form-control" required id="name" placeholder="Enter Name" onblur="getValue()"> -->
<div class="button">
<a href="question.html" class="btn" type="submit">Start<i class="fa-solid fa-play" id="start"></i></a>
<a href="final.html" class="btn">High Score<i class="fa-solid fa-crown"></i></a>
</div>
</form>
</div>
</div>
</body>
</html>