-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (87 loc) · 4.19 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
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Faith Quotes</title>
<link rel="icon" href="favicon.png" type="image/png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Loading Animation (Bible with flipping pages) -->
<div id="loader" class="bible-loader">
<div class="cover">
<div class="page"></div>
<div class="page"></div>
<div class="page"></div>
<div class="page"></div>
<div class="page"></div>
<div class="page"></div>
<div class="page"></div>
</div>
</div>
<!-- Alert Modal -->
<div id="alertModal" class="modal">
<div class="modal-content ">
<h2>PRAISE GOD FORTUNE IS MY PORTION IN 2024</h2>
<p>I AM ALSO REDEEMED TO FLOURISH IN HARD TIMES!<br><br>CONGRATULATIONS!<br><br>AMEN AND AMEN!</p>
<button id="closeAlertBtn">Amen</button>
</div>
</div>
<div id="contentWrapper" class="blur">
<!-- Header Section with Logo, Social Media Icons, and Buttons -->
<header>
<div class="logo">SpiritSpeaks</div>
<nav>
<a href="https://www.facebook.com/davidoyedepoministries" target="_blank" class="social-icon"><img
src="./images/Facebook_logo_(square).png" alt="Twitter"></a>
<a href="https://youtube.com/@lfcww?si=3ISUHiRVHn2_FDoR" target="_blank" class="social-icon"><img
src="./images/youtube.png" alt="YouTube"></a>
<!-- <button>Sign Up</button>
<button>Login</button> -->
</nav>
</header>
<!-- Main Content -->
<main>
<h2><em>What is the Lord saying to you today?</em></h2>
<button id="quoteBtn">Click the button to find out</button>
<div id="quoteSection"></div>
<figure class="image">
<img src="./images/August.jpeg">
<figcaption><p>Monthly Declaration</p></figcaption>
</figure>
<!-- Testimony Form -->
<div id="testimonyForm">
<h3>Share Your Testimony</h3>
<form>
<input type="text" id="name" placeholder="Your Name">
<textarea id="testimony" placeholder="What the Lord has done"></textarea>
<button id="submit" type="submit">Submit</button>
</form>
</div>
<!-- Recommended Books Section -->
<div id="recommendedBooks">
<h3>Recommended Books for the Month of August 2024</h3>
<div class="book-list">
<a href="https://www.amazon.com/Healing-Balm-David-Oyedepo-1996-05-04/dp/B01FKS6WF8" target="_blank"
class="book" style="background-image: url(./images/healing-balm.jpeg);"></a>
<a href="https://www.amazon.com/Healing-Ministry-Jesus-Christ/dp/9782480290" target="_blank"
class="book" style="background-image: url(./images/healing-ministry.jpeg);"></a>
<a href="https://www.amazon.com/Satan-Get-Lost-D-Oyedepo/dp/9782480088" target="_blank" class="book"
style="background-image: url(./images/satan-get-lost.jpeg);"></a>
<a href="https://www.amazon.com/Born-win-David-Oyedepo/dp/B0007C0Y5W" target="_blank" class="book"
style="background-image: url(./images/born\ to\ win.jpeg);"></a>
<a href="https://www.amazon.com/Keys-Divine-Health-David-Oyedepo/dp/9782480282" target="_blank"
class="book" style="background-image: url(./images/keys\ to\ divine\ health.jpeg);"></a>
</div>
</div>
</main>
<!-- Footer Section -->
<footer>
<p>BluSpace Multimedia | All rights reserved © 2024</p>
</footer>
<script src="daily-quotes.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script>
</div>
</body>
</html>