-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathend.html
42 lines (35 loc) · 1.68 KB
/
end.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Congrats!</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.1/css/all.css"
integrity="sha384-xxzQGERXS00kBmZW/6qxqJPyxW3UR0BPsL4c8ILaIWXva5kFi7TxkIIaMiKtqV1Q" crossorigin="anonymous">
</head>
<body>
<div class="wallpaper">
<div class="container">
<h1 class="finalscore">SCORE : 0 </h1>
<form class="end-form">
<h2 class="username">Enter your name below to save your score</h2>
<input maxlength="8" type="text" name="name" id="username" autocomplete="off"
placeholder="Enter your name" required>
<button class="save btn" type="submit">Save</button>
</form>
<a href="./game.html" class="button1 btn1">Play Again</a>
<a href="./index.html" class="button2 btn2 ">Go Home <i class="fas fa-home"></i></a>
<div class="social-icons">
<a href="#"
onclick="window.open('https://github.com/AbhijithS-Ark');window.open('https://github.com/anirket');"
class="icon1"><i class="fab fa-github-square"></i></a>
<a href="#"
onclick="window.open('https://www.linkedin.com/in/aniket-kulkarni-908557188/');window.open('https://www.linkedin.com/in/abhijiths-ark-');"
target="_blank" class="icon1"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
<script src="./end.js"></script>
</body>
</html>