-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
99 lines (99 loc) · 3.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Generators</title>
<link rel="icon" href="./images/lifeadventurer_rounded_logo.png" />
<!-- bootstrap 5.3.2 -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<!-- jquery 3.7.1 -->
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"
></script>
<!-- box icons -->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<header>
<div class="row">
<h1 class="col-md-4 col-sm-6 offset-md-4 offset-sm-3">
Generators Gallery
</h1>
<div
class="col-md-1 col-sm-1 offset-md-3 offset-sm-2 bx bx-moon"
id="dark-mode-icon"
>
</div>
</div>
</header>
<section>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="card mb-3 border-0">
<img
class="card-img-top"
src="./images/fortune_generator_example.png"
alt="fortune generator example"
/>
<div class="card-body">
<h4 class="card-title">Fortune Generator</h4>
<p class="card-text">
Get your daily fortune with just a click.
</p>
<a class="btn" href="./fortune_generator/">Check this out</a>
</div>
<div class="card-footer">
<div id="last-update-1"></div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card mb-3 border-0">
<img
class="card-img-top"
src="./images/quote_generator_example_(2).png"
alt="quote generator example"
/>
<div class="card-body">
<h4 class="card-title">Quote Generator</h4>
<p class="card-text">
Generate inspiring and thought-provoking quotes effortlessly.
</p>
<a class="btn" href="./quote_generator/">Check this out</a>
</div>
<div class="card-footer">
<div id="last-update-2"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="row text-muted py-3 me-3 float-end" id="footer-author">
<h5>
Copyright © 2023-2024 LifeAdventurer | All Rights Reserved.
<a href="https://github.com/LifeAdventurer">
<img
id="footer-author-icon"
src="./images/lifeadventurer_rounded_logo.png"
alt="footer image"
/>
</a>
</h5>
</div>
</footer>
<script src="./scripts.js"></script>
</body>
</html>