-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathend.html
More file actions
102 lines (83 loc) · 3.62 KB
/
end.html
File metadata and controls
102 lines (83 loc) · 3.62 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>End Page</title>
<link rel="stylesheet" href="css/end.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.1/css/all.css"
integrity="sha384-xxzQGERXS00kBmZW/6qxqJPyxW3UR0BPsL4c8ILaIWXva5kFi7TxkIIaMiKtqV1Q" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Pattaya&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div id="logoDiv">
<img src="img/Almanahel.png" id="logoimg" alt="almanahel">
</div>
<h1>Almanahel</h1>
<!-- ----------------------------------------------------------------------------- -->
<!-- <nav role="navigation">
<div id="menuToggle">
<input type="checkbox" />
<span class="spanMenu"></span>
<span class="spanMenu"></span>
<span class="spanMenu"></span>
<ul id="menu">
<a href="index.html">
<li>Home</li>
</a>
<a href="about_us.html">
<li>about us</li>
</a>
<a href="#" target="_blank">
<li>Book of the week</li>
</a>
</ul>
</div>
</nav>
-->
<!-- ---------------------------------------------------------------------------------------- -->
</header>
<div class="container">
<div class="imageshow">
<img src="" id="imageid" alt="">
<div id="audio">
</div>
</div>
<div id="end" class="flex-center flex-column">
<h2 id="finalScore">0</h2>
<form class="end-form-container" id="form">
<h3 id="end-text">Enter your name below to save your score!</h3>
<input type="text" name="name" id="username" placeholder="Enter your name">
<p id="paragraph"></p>
<button class="btn" id="saveScoreBtn" type="submit" onclick="saveHighScore(event)"
disabled>Save</button>
</form>
<a href="/game.html" class="btn">Play Again</a>
<a href="/index.html" class="btn">Go Home<i class="fas fa-home"></i></a>
</div>
</div>
<footer id="foter">
<p class="copyright-text">Copyright © All Rights Reserved by
<a class="copyright-text" href="#">ALMANAHEL 2021</a>.
</p>
<!-- <div id="copIGht">
</div> -->
<img id="logofoot" src="img/Almanahel.png" alt="">
<div class="footcontainer">
<div class="row"></div>
<ul class="social-icons">
<li><a class="facebook" href="https://www.facebook.com/" target="_blank"><img src="img/FB.png"
alt=""></a></li>
<li><a class="twitter" href="https://twitter.com/?lang=en" target="_blank"> <img
src="img/TWITr.png" alt=""> </a></li>
<li><a class="dribbble" href="https://www.instagram.com/" target="_blank"><img
src="img/INSTA.png" alt=""></a></li>
<li><a class="linkedin" href="https://www.linkedin.com/" target="_blank"><img src="img/LINKIN.png" alt=""></a></li>
</ul>
</div>
</div>
</footer>
<script src="js/end.js"></script>
</body>
</html>