-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (52 loc) · 1.53 KB
/
Copy pathindex.html
File metadata and controls
62 lines (52 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>For Ayla ❤️</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<!-- LOCK SCREEN -->
<div id="lockscreen">
<div class="phone">
<div class="time">9:41</div>
<div class="code" id="code"></div>
<div class="hint">Face ID not available</div>
</div>
</div>
<!-- MAIN APP -->
<main class="app hidden" id="app">
<header class="header">
<h1>For Ayla <span>❤️</span></h1>
<p>a small place made quietly for you</p>
</header>
<!-- HEART -->
<section class="card center">
<div class="heart" onclick="addHeart()">❤️</div>
<div class="count"><span id="heartCount">0</span> Hearts</div>
<button class="btn" onclick="addHeart()">Tap</button>
</section>
<!-- COMPLIMENTS -->
<section class="card">
<h2>💌 Compliments</h2>
<p id="complimentBox">Press for something.</p>
<button class="btn" onclick="newCompliment()">New one</button>
</section>
<!-- COLLECTION -->
<section class="card">
<h2>⭐ Collectibles</h2>
<p>❤️ x <span id="collection">0</span></p>
</section>
<!-- NOTES -->
<section class="card">
<h2>🌸 Tiny Notes</h2>
<div id="notes"></div>
</section>
<!-- SECRET 👀 -->
<div class="secret" onclick="secretTap()">ouu shii👀</div>
<div id="secretMsg"></div>
</main>
<script src="script.js"></script>
</body>
</html>