-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbill.html
More file actions
48 lines (44 loc) · 1.81 KB
/
Copy pathbill.html
File metadata and controls
48 lines (44 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Left Over</title>
<link rel="icon" type="image/x-icon" href="img file/logo/favicon-icon.png">
</head>
<style>
body {
scroll-behavior: smooth;
/* background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(195, 148, 104, 1) 80%, rgba(174, 123, 75, 1) 100%); */
background: rgb(254,254,253);
background: linear-gradient(180deg, rgba(254,254,253,1) 0%, rgba(218,190,163,1) 33%, rgba(150,106,65,1) 66%, rgba(51,35,20,1) 100%);
font-family: 'IBM Plex Sans Thai Looped', sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.container {
display: block;
justify-content: center;
}
</style>
<body>
<audio id="Receipt-audio" src="Sound Effect/4 Receipt/Receipt.mp3"></audio>
<div class='container'>
<img src='img file/bill/Receipt-01.png' style='width:80%; '>
<img src='img file/bill/Receipt-02.png' style='width:80%; margin-top:-3%;'>
<img src='img file/bill/Receipt-02.png' style='width:80%; margin-top:-3%;'>
<img src='img file/bill/Receipt-02.png' style='width:80%; margin-top:-3%;'>
<img src='img file/bill/Receipt-02.png' style='width:80%; margin-top:-3%;'>
<img src='img file/bill/Receipt-02.png' style='width:80%; margin-top:-3%;'>
<img src='img file/bill/Receipt-02.png' style='width:80%; margin-top:-3%;'>
<img src='img file/bill/Receipt-03.png' style='width:80%; margin-top:-3%; cursor: pointer;' onclick='window.location = "last_scene/last_scene.html";''>
</div>
<script>
const audio = document.getElementById('Receipt-audio');
audio.play();
</script>
</body>
</html>