-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 860 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Spiritual Message Generator</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' href='./resources/styles/style.css'>
<script src='./resources/scripts/script.js' defer></script>
</head>
<body>
<main>
<div class="stars"></div>
<div class="milky-way"></div>
<div class="message-container">
<header>
<h1>Spiritual Messages</h1>
<div class = "divider"></div>
</header>
<div class="message-area">
<h2 id="message-text"></h2>
</div>
<div class="button">
<button id="btn-generate">Enlighten Me</button>
</div>
</div>
</main>
</body>
</html>