blob: 7b10f3e7614b00c14fa4373c84cba5c421f16ec2 (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IRENE 💌</title>
<link rel="icon" type="image/png" href="sources\irene_favicon.png" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<audio type="audio/mp3" src="sources\SABBATH.mp3" autoplay loop></audio>
<div id="lockscreen">
<div id="lockscreen-image">
<img src="sources\poro.png" alt="poro" />
</div>
<div id="password-box">
<input
type="password"
id="password"
placeholder="Who does Poro love the most?"
/>
</div>
</div>
<div id="main-page">
<div id="background">
<img src="sources/sayaworld.jpg" alt="" />
</div>
<div id="main-page-left-saya">
<div>
<img src="sources\saya.png" alt="saya" />
</div>
</div>
<div id="right-main-page-container">
<div id="main-page-right-content">
<div class="direct-button" id="first-option">
<a href="thankletter.html">^_^</a>
</div>
<div class="direct-button" id="second-option">
<a href="gallery.html">@@</a>
</div>
<div class="direct-button" id="third-option">
<a href="prj_Irene/LL.html">ily</a>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
|