-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage3.html
28 lines (22 loc) · 1.24 KB
/
page3.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="box">
<span style="font-size:500%;color:yellow;margin-left: 35px; ">★</span>
<span style="font-size:500%;color:yellow;margin-left: 20px;">★</span>
<span style="font-size:500%;color:yellow;margin-left: 20px;">★</span>
<h1 id="line">0</h1><br><br><br>
<!-- <a href="page1.html"> <input type="image" src="https://cdn2.iconfinder.com/data/icons/basic-office-snippets/170/Basic_Office-3-512.png" alt="Submit" style="float:left" width="48" height="48"></a> -->
<a href="page2.html"><input type="image" src="https://img.icons8.com/material/452/restart--v1.png" alt="Submit" name="submit" style="float:left; background-color: #ffcd05;border: 2px solid white; box-shadow: 2px 2px 5px rgb(97, 92, 92);border-radius: 6px;" width="48" height="48"></a>
</div>
<script src="components.js"></script>
<script>
let score = sessionStorage.getItem("SCORE")
const line = document.getElementById('line')
line.innerText = `Score : ${score}`
</script>
</body>
</html>