-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (118 loc) · 3.69 KB
/
index.html
File metadata and controls
120 lines (118 loc) · 3.69 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Abiding In His Presence | Faith-Based Books</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background: #f8f8f8;
color: #333;
}
header {
background: #3a5a40;
color: white;
padding: 40px 20px;
text-align: center;
}
section {
max-width: 1100px;
margin: auto;
padding: 40px 20px;
}
.books {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.book {
background: white;
border-radius: 8px;
padding: 30px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-align: center;
}
.book img {
max-width: 180px;
margin-bottom: 20px;
}
.price {
font-size: 22px;
font-weight: bold;
margin: 10px 0;
}
.buy-button {
display: inline-block;
width: 100%;
background: #3a5a40;
color: white;
text-decoration: none;
padding: 12px;
font-size: 16px;
border-radius: 5px;
margin-top: 20px;
}
.buy-button:hover {
background: #2d4631;
}
footer {
text-align: center;
padding: 20px;
background: #eee;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<h1>Welcome To Abiding In His Presence.com</h1>
<p>Faith-Filled Books to Strengthen Your Walk with God</p>
</header>
<section>
<div class="books">
<!-- Book 1 -->
<div class="book">
<img src="power-of-his-presence.jpg" alt="The Power of His Presence Book Cover">
<h2>The Power of His Presence</h2>
<div class="price">$17.99</div>
<p>
Learn how abiding in God's presence brings spiritual strength,
renewal, and deeper intimacy with Him.
</p>
<a class="buy-button" href="https://baige.gumroad.com/l/swfkr" target="_blank">
Buy on Gumroad
</a>
</div>
<!-- Book Membership -->
<div class="book">
<h2>Join Book Membership. It's Free</h2>
<div class="Discount">50-70 Percent off purchase for all members</div>
<p>
Build a relationship with us and discover how to experience lasting peace by anchoring your heart
and mind in God’s promises. We are a community with a share sense of belonging, purpose and identity in Christ.
Our members feel safe, valued, trusted and connected, fostering personal growth, emotional wellbeing and mutual support.
</p>
<p>
You love God, but anxiety has wrapped itself around your soul. You wonder if your faith is enough. You wonder if anyone
else understands the silent battles you fight each day. Financial worries, Health uncertainties, Anxieties, Loss of loved ones,
Grief that felt too large to name can make peace feels like a distant promise that cannot be reached. We try to fix, we try
to plan what only God can govern. So here is the question, how do you experience perfect peace when the storm of life won't stop?
That is the journey you are about to take with your free membership and you may discover as I have, that God's peace does not fail.
</p>
<p>
God's Promise: "Though the mountains be shaken and the hills be removed yet my unfailing love for you will not be shaken
nor my covenant of peace be removed," says the Lord who has compassion on you. (Isaiah 54:10)
</p>
<a class="subscribe-button" href="https://baige.gumroad.com/subscribe" target="_blank">
<b>Subscribe Today</b>
</a>
</div>
</div>
</section>
<footer>
© 2026 Abidinginhispresence.com | All Rights Reserved | <a class="subscribe-button" href="https://baige.gumroad.com/subscribe" target="_blank">Subscribe Today</a>
</footer>
</body>
</html>