-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
285 lines (253 loc) · 16.8 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alan Davis 1</title>
<link rel="icon" href="https://fav.farm/🔥" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Roboto&display=swap');
*{
background-color: black;
color: white;
font-family: "Righteous", sans-serif;
font-weight: 400;
font-style: normal;
}
.righteous-regular {
font-family: "Righteous", sans-serif;
font-weight: 400;
font-style: normal;
}
/* Style the links inside the sidenav */
#mySidenav a {
position: absolute; /* Position them relative to the browser window */
left: -80px; /* Position them outside of the screen */
transition: 0.3s; /* Add transition on hover */
padding: 15px; /* 15px padding */
width: 100px; /* Set a specific width */
text-decoration: none; /* Remove underline */
font-size: 20px; /* Increase font size */
color: white; /* White text color */
border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
}
#mySidenav a:hover {
left: 0; /* On mouse-over, make the elements appear as they should */
}
/* The about link: 20px from the top with a green background */
#prayer {
top: 20px;
background-color: blue;
}
#blog {
top: 80px;
background-color: #2196F3; /* L.Blue */
}
#water {
top: 140px;
background-color: blue; /* Blue */
}
#fire {
top: 200px;
background-color: #2196F3; /* O.Red */
}
#store {
top: 260px;
background-color: blue; /* Blue */
}
#testimony {
top: 320px;
background-color: #2196F3; /* L.Blue */
}
#home {
top: 380px;
background-color: blue;
}
#one {
text-align: center;
}
#two {
text-align: center;
}
#three {
text-align: center;
}
#four {
text-align: center;
}
/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
background-color: black;
overflow: hidden;
position: fixed;
bottom: 0;
width: 100%;
}
/* Style the links inside the navigation bar */
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
/* Add a green background color to the active link */
.navbar a.active {
background-color: #04AA6D;
color: white;
}
/* Hide the link that should open and close the navbar on small screens */
.navbar .icon {
display: none;
}
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the navbar (.icon) */
@media screen and (max-width: 600px) {
.navbar a:not(:first-child) {display: none;}
.navbar a.icon {
float: right;
display: block;
}
}
/* The "responsive" class is added to the navbar with JavaScript when the user clicks on the icon. This class makes the navbar look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
.navbar.responsive a.icon {
position: absolute;
right: 0;
bottom: 0;
}
.navbar.responsive a {
float: none;
display: block;
text-align: left;
}
}
.button {
position: relative;
background-color: blue;
border: none;
border-radius: 50%;
font-size: 28px;
color: #FFFFFF;
padding: 20px;
width: 200px;
text-align: center;
transition-duration: 0.5s;
text-decoration: none;
overflow: hidden;
cursor: pointer;
}
.button:after {
content: "";
background: #f1f1f1;
display: block;
position: absolute;
padding-top: 300%;
padding-left: 350%;
margin-left: -20px !important;
margin-top: -120%;
opacity: 0;
transition: all 0.8s
}
.button:active:after {
padding: 0;
margin: 0;
opacity: 1;
transition: 0s
}
</style>
</head>
<body>
<nav>
<div id="mySidenav" class="sidenav">
<a href="index.html" id="home">Home</a>
<a href="https://akdavis83.github.io/AD/prayer.html" id="prayer">Prayer</a>
<a href="https://akdavis83.github.io/ADMin/devo1-24.html" id="blog">Blog</a>
<a href="https://akdavis83.github.io/AD/" id="water">Water</a>
<a href="https://akdavis83.github.io/ADMin/" id="fire">Fire</a>
<a href="https://akdavis83.github.io/AD/storesignup.html" id="store">Store</a>
<a href="testimony.html" id="testimony">Story</a>
</div>
</nav>
<main>
<div id="one">
<img src="welcome8.png" alt="Welcome">
<h1> Welcome To My Website</h1>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<p style="color: #4ca5cd;">
<h1 style="color: #4ca5cd;">Humility</h1>-He must increase, I must decrease! By humility and the fear of the Lord are riches, and honor, and life. The fear of the Lord is the instruction of wisdom; and before honor is humility. Before destruction the heart of man is haughty, and before honor is humility. Likewise, ye younger, submit yourselves to the elder. Yea, all of you be subject one to another, and be clothed with humility: for God resists the proud but gives grace to the humble. Humble yourselves therefore under the mighty hand of God, that he may exalt you in due time. For thus saith the high and lofty One that inhabiteth eternity, whose name is Holy; I dwell in the high and holy place, with him also that is of a contrite and humble spirit, to revive the spirit of the humble, and to revive the heart of the contrite ones. Humility is going low, thinking of Christ more and abasing self to let Christ exalt us. It's not thinking low of self in terms of esteem, but it is the proper perspective of our place in Christ.
<h1 style="color: #4ca5cd;">Hunger</h1>-The process of spiritual hunger is individually unique but it is summed up in one way: the more we eat of Christ the hungrier we get until we are consumed with Him and by Him. Jesus said unto them, I am the bread of life: he that cometh to me shall never hunger; and he that believeth on me shall never thirst. Blessed are they which do hunger and thirst after righteousness: for they shall be filled. We are salt and light and our spiritual salt should make us thirsty for Christ's thirst quenching satisfaction.
<h1 style="color: #4ca5cd;">Obedience</h1>-All of creation obey's the voice of God except humanity. We have a daily choice to make to bring into captivity every thought to the obedience of Christ. Know ye not, that to whom ye yield yourselves servants to obey, his servants ye are to whom ye obey; whether of sin unto death, or of obedience unto righteousness? It is better to obey than any other form of activity or duty that we could do. Take all of His word and put it into action.
<h1 style="color: #4ca5cd;">Pure Belief</h1>-Childlike faith is pure faith, it is Centurion type of faith, it is woman with the issue of blood type of faith and it is simple trust and reliance upon the trustworthy word of God. It's the kind of faith Mary had when she said: Behold the handmaid of the Lord; be it unto me according to thy word. When talking about child-like faith Jesus said: Whosoever shall not receive the kingdom of God as a little child, he shall not enter therein. He also said: Whosoever therefore shall humble himself as this little child, the same is the greatest in the kingdom of heaven.
<h1 style="color: #4ca5cd;">Prayer</h1>-Is powerful. Pray without ceasing. Pray every where, lifting up holy hands, without wrath and doubting. The effectual fervent prayer of a righteous man avails much. Pray one for another, that ye may be healed. The Spirit also helps our infirmities: for we know not what to pray for as we ought: but the Spirit itself makes intercession for us with groanings which cannot be uttered. On the day of Pentecost we saw the power that Christ wanted to release to His body and the results that followed. And when the day of Pentecost was fully come, there came a sound from heaven as of a rushing mighty wind, and it filled all the house where they were sitting. And there appeared unto them cloven tongues like as of fire, and it sat upon each of them. And they were all filled with the Holy Ghost, and began to speak with other tongues, as the Spirit gave them utterance.
</p>
<hr>
</div>
<div id="two">
<img src="pentecost4.jpg" alt="Pent1">
<p style="color: #ffa12c;">
From the day of Pentecost to Irenaus(AD125-200) and Origen(AD185-284) to Augustine(AD354-430) to the Montanist and Monasticism to Francis of Assis(AD1181-1226) through the Reformation and onto the Anabaptist's and Quakers(AD1650) to the revival among the Methodists and all through the Great Awakenings to the Welsh Revival and Azusa Street to the Holiness and Healing revivals of the 40's and 50's to the Charismatic revivals of the 60's and 70's all the way until today, the power of God and the scarlet thread of the blood of Jesus is clearly seen. The day of Pentecost was the former rain and in these last days we stand with our mouths open wide as for the latter rain. This is power for purpose! As on the day of Pentecost a 3,000 soul harvest came in, the fields now are ripe for harvest. Through the mocking and confusion Peter stood up and said, These are not drunken, as ye suppose, seeing it is but the third hour of the day. But this is that which was spoken by the prophet Joel; And it shall come to pass in the last days, saith God, I will pour out of my Spirit upon all flesh: and your sons and your daughters shall prophesy, and your young men shall see visions, and your old men shall dream dreams; and on my servants and on my handmaidens I will pour out in those days of my Spirit; and they shall prophesy. While we get distracted and focused on entertainment, idolatry, comfort or the latest thing happening, the Lord is patiently waiting for the harvest. It's never to late to turn and burn with a passionate fire, establish your heart for the coming of the Lord draws near. Let us return unto the Lord: He will heal us and bind us up. After two days He will revive us: in the third day He will raise us up, and we shall live in His sight. Then shall we know, if we follow on to know the Lord: His going forth is prepared as the morning and He shall come unto us as the rain, as the latter and former rain unto the earth.
</p>
<hr>
</div>
<div id="three">
<img src="pentecost6.jpg" alt="Pent2">
<p style="color: #ffa12c;">
Christ is declared to be the Son of God with power, according to the spirit of holiness, by the resurrection from the dead. Resurrection power is not just for those already in the tomb, resurrection power works in the saints while we are still alive. Isaac laid on the altar, Abraham raised the knife but not one cut or slice was ever made. David saw many spears, he had many wilderness encounters with Saul and his troops but they never touched him. The lion, the bear, Goliath's sword and spear to Saul's hunting him down, none of it touched David's life physically. It's the fellowship of His sufferings. He took the nails, He took the biting wood on His already broken and bleeding back, He took the death march while already draining blood and He laid down His life as a propitiation that we might live in and through Him. Glorified bodies await us in glory but while we wait we like Paul, always bear about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body. Trials, troubles, persecution, affliction and tribulation increases resurrection power in our lives. Not that we hope or wish for them to occur but we can have the proper perspective through them. Without the furnace there's no 4th man in the fire. Suffering and loss is to win Christ and be found in Him, not having my own righteousness but the righteousness which is of God by faith: that I may know Him, and the power of His resurrection, and the fellowship of His sufferings, being made conformable to His death. When asking about the thorn in his flesh the Lord said to Paul: My grace is sufficient for thee: for my strength is made perfect in weakness. Paul then said: Most gladly therefore will I rather glory in my infirmities, that the power of Christ may rest upon me. Therefore I take pleasure in infirmities, in reproaches, in necessities, in persecutions, in distresses for Christ's sake: for when I am weak, then am I strong. As partakers of the sufferings and we are also made partakers of His life and consolation. Resurrection power!
</p>
<hr>
</div>
<div id="four">
<p>
Christ is the fullness that fills all in all. When all things are subdued in Christ, the Son will also be in subjection to Him that put all things under Him, that God may be all in all. The 1st step to living like Christ is to follow Him! Astonished at the boat sinking load of fish, Peter fell down at Jesus' knees, saying, Depart from me; for I am a sinful man, O Lord. Jesus said unto Simon, Fear not; from henceforth thou shalt catch men. And when they had brought their ships to land, they forsoke all, and followed Him. When Jesus made the call, the disciples rose up and followed Him without delay. On the other hand a few people showed up to Jesus saying they would follow but when they heard the price of discipleship they changed their minds. A rich ruler asked about eternal life, he even professed to keep the law from his youth up but in the end he went away very sorrowful because Christ asked him to give up the one thing that held him up from following fully. Sell all that you have and give the money to the poor, you will have treasure in heaven: and come, follow me was the final instruction but he could not do it. Being all in is not focusing on anothers walk of faith because going all in is simply to just follow Him, fully focused on Him. We can follow others as they follow Christ as long as they help us to follow after Christ to a greater capacity. The way to walk with the Lord is clear, If any many will come after me, let him deny himself, and take up his cross daily, and follow me. Instead of self-gratificaiton, daily denial. The only reason to take up a cross is for a crucifixion. Jesus had not yet gone to the cross of Calvary but these words still painted a vivid picture in the mind of the hears of pain, torture, blood, suffering and death. If you were scheduled to a cross for the day it was not a good day, it was your last day and the end was to be a day of agony followed by your departure. All In is being in the world but not of the world. All In is on fire for Jesus every day! All In is obedience to the word written in your heart. All In is a passionate pursuit of the One who is already passionately pursuing you. Go All In!
</p>
<img src="allinx.jpg" alt="AllIn">
<br>
<a href="testimony.html"><button class="button">Testimony</button></a>
<br>
<br>
<br>
<br>
<br>
</div>
<hr>
</main>
<footer>
<div class="navbar" id="myNavbar">
<a href="https://akdavis83.github.io/AD/prayer.html" id="prayer">Prayer</a>
<a href="https://akdavis83.github.io/ADMin/devo1-24.html" id="blog">Blog</a>
<a href="https://akdavis83.github.io/AD/" id="water">Water</a>
<a href="https://akdavis83.github.io/ADMin/" id="fire">Fire</a>
<a href="https://akdavis83.github.io/AD/storesignup.html" id="store">Store</a>
<a href="testimony.html" id="testimony">Story</a>
<a href="index.html" id="home">Home</a>
<a href="https://www.freecounterstat.com" title="website page counter"><img src="https://counter7.optistats.ovh/private/freecounterstat.php?c=4macdkprl74cjnztl92jx5452b6cck3r" border="0" title="website page counter" alt="website page counter"></a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</div>
</footer>
<script>
/* Toggle between adding and removing the "responsive" class to the navbar when the user clicks on the icon */
function myFunction() {
var x = document.getElementById("myNavbar");
if (x.className === "navbar") {
x.className += " responsive";
} else {
x.className = "navbar";
}
}
</script>
</body>
</html>