forked from COPS-CSOC-2022/CSOC22-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (20 loc) · 1021 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>HANGMAN</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="style.css">
</head>
<body>
<h1 class="text-center">HANGMAN GAME</h1>
<div id="difficult">
<p class="text-center">Choose Difficulty</p>
<a href="easy.html" class="text-center" id="easy">Easy<i class="fa-solid fa-play" id="start"></i></a>
<a href="hard.html" class="text-center" id="hard">Hard<i class="fa-solid fa-play" id="start"></i></a>
</div>
<br>
<a href="highscore.html" class="text-center" id="highscore">Highscore<i class="fa-solid fa-crown"></i></a></a>
<!-- <script src="main.js"></script> -->
</body>
</html>