blob: db65be0072ef1648b809e70e5d1ceb3b842d909a (
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles_snu.css" />
<title>💌</title>
</head>
<body>
<div id="?">
<div id="lockscreen-container">
<img id="lock-icon" src="./sources/luvu.png" alt="?" />
<p id="only-for-you"></p>
</div>
</div>
<div id="love-irene-container">
<div class="home-button">
<a href="../index.html"
><img src="./sources/luvu.png" alt="home-button"
/></a>
</div>
<div id="background">
<img src="./sources/snu2.jpg" alt="" />
</div>
<div id="top-margin"></div>
<div id="charater-box">
<div id="char">
<!-- this is where we insrrt character img using js -->
</div>
</div>
<div id="box"></div>
<div id="box-2">
<!-- we insrt text here -->
</div>
<div id="option-container">
<!-- there will be options for Irene to choose ( if there are) -->
</div>
</div>
<script src="./a.js"></script>
</body>
</html>
|