-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (40 loc) · 1.74 KB
/
index.html
File metadata and controls
49 lines (40 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CUSTOMIZE: Change the page title -->
<title>For you <3</title>
<!-- CUSTOMIZE: Update the favicon path/filename as needed -->
<link rel="icon" type="image/png" href="./assets/favicon.png" sizes="32x32">
<!-- Link to your stylesheet - don't change unless you rename style.css -->
<link rel="stylesheet" href="style.css">
<!-- CUSTOMIZE: You can add Google Fonts or other resources here -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<!-- CUSTOMIZE: Change the header text -->
<h1>For you <3</h1>
<div class="shrink-close-icons">
<!-- CUSTOMIZE: Update icon paths/filenames as needed -->
<img src="./assets/shrink-icon.png" alt="Shrink Icon" class="shrink-icon" />
<img src="./assets/close-icon.png" alt="Close Icon" class="shrink-icon" />
</div>
</header>
<div class="inner-container">
<!-- The image is loaded via CSS from the --image-path-content variable -->
<div class="image-content"></div>
<!-- CUSTOMIZE: Change the button text -->
<button id="main-button">Grow!</button>
<!-- CUSTOMIZE: Change the final message text -->
<div class="final-message">Have a good day!</div>
</div>
</div>
<!-- Link to your JavaScript - don't change unless you rename index.js -->
<script src="index.js"></script>
</body>
</html>