-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·53 lines (46 loc) · 1.41 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stars Clouds Aphorism</title>
<!-- GOOGLE FONTS -->
<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=IBM+Plex+Mono&family=Source+Serif+Pro:wght@300&display=swap"
rel="stylesheet"
/>
<!-- STYLES -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<a href="https://github.com/emanuelefavero" target="_blank" id="developer"
></></a
>
<div class="container">
<!-- STARS -->
<div class="sky">
<!-- NOTE: here there will be all stars from js -->
</div>
<!-- APHORISM -->
<figure class="aphorism">
<blockquote>
<p id="aphorismOutput">
<!-- NOTE: here there will be the aphorism text -->
</p>
</blockquote>
<figcaption id="authorOutput">
<!-- NOTE: here there will be the aphorism author -->
</figcaption>
</figure>
<!-- CLOUDS -->
<div class="clouds-container">
<div class="cloud cloud-1"></div>
<div class="cloud cloud-2"></div>
</div>
</div>
<!-- JS -->
<script src="script.js"></script>
</body>
</html>