Joshua 1:9

Have I not commanded you? Be strong and courageous. Do not be freightened, and do not be dismayed, for the lord your God is with you wherever you go.

Romans 12:1-2

Therefore, I urge you, brother and sisters, in view of God's mercy, to offer your bodies as a living sacrifice, holy and pleasing to God—this is your true and proper worship.

Romans 12:17-18

Do not repay anyone evil for evil. Be careful to do what is right in the eyes of everybody. If it is possible, as far as it depends on you, live at peace with everyone.

Romans 12:12

Be joyful in hope, patient in affliction, faithful in prayer.

Luke 12:8

I tell you, whoever acknowledges me before men, the Son of Man will also acknowledge him before the angels of God.

Proverbs 12:7

Wicked men are overthrown and are no more, but the house of the righteous stands firm.

Matthew 12:6

I tell you that one greater than the temple is here.

Hebrews 12:5

And you have forgotten that word of encouragement that addresses you as sons: "My son, do not make light of the Lord's discipline, and do not lose heart when he rebukes you, because the Lord disciplines the one he loves, and he chastens everyone he accepts as his son."

Corinthians 12:3

Therefore I tell you that no one who is speaking by the Spirit of God says, "Jesus be cursed," and no one can say, "Jesus is Lord," except by the Holy Spirit.

John 11:26

"Whoever lives and believes in me will never die. Do you believe this?"

// Array of section IDs corresponding to each day's Bible verse const sections = [ '#verse-one', '#verse-two', '#verse-three', '#verse-four', '#verse-five', '#verse-six', '#verse-seven', '#verse-eight', '#verse-nine', '#verse-ten', ]; // Function to show the section corresponding to the current day function showDailyVerse() { // Get the current day of the month (1 - 31) const today = new Date().getDate(); // Hide all sections first sections.forEach(section => { const el = document.querySelector(section); if (el) el.style.display = 'none'; }); // Show the section corresponding to today's date const verseOfTheDay = sections[today - 1]; // Adjust for 0-based array const verseElement = document.querySelector(verseOfTheDay); if (verseElement) verseElement.style.display = 'block'; } // Run the function when the page loads window.onload = showDailyVerse;