Home
About
Contact
Privacy Policy
GW_Rabbit
ads
Home-icon
Featured
Recent
Random
Show More
_About us
_Contact us
Home
Coming soon page
Coming soon page
Coming soon page
Gamer VFX
February 23, 2022
Hello everyone
Today i am going to show you how to make working coming soon page in html css and js
check my youtube channel and subscribe if you want to download image with full source
code click the download button and wait for 15 seconds
Responsive Coming Soon Page
Company
Name
We are coming soon
We launch our new website soon. Please stay updated and follow.
00
Days
00
Hours
00
Minutes
00
Seconds
Click to Copy html
*{ padding: 0; margin: 0; box-sizing: border-box; } body{ font-family: 'Roboto', sans-serif; font-size: 18px; } .coming-soon-area{ background-image: linear-gradient(#000000bf, #000000bf), url(images/background.png); background-size: cover; background-repeat: no-repeat; background-position: center center; width: 100%; min-height: 100vh; color: #fff; padding: 5px 0px; } .container{ margin: auto; text-align: center; } .cs-content{ max-width: 760px; margin: auto; padding: 25px 30px; } .site-logo{ margin: 22px 0px; } .site-logo a{ font-size: 30px; font-weight: 700; color: #fff; text-decoration: none; } .site-logo a span{ color: #FA5B0F } .cs-content h1{ font-size: 72px; font-weight: 900; } .cs-content p{ margin: 10px 35px; } .form{ margin: 50px 0px; } .form input{ background: #ffffff85; color: #fff; font-size: 18px; font-family: 'Roboto', sans-serif; border: none; outline: none; margin: 5px 0px; padding: 20px; width: 67%; border-radius: 5px; } .email-field::placeholder{ color: #fff; } .form input[type="submit"]{ width: 120px; background: #FA5B0F; color: #fff; cursor: pointer; } .countdown-timer{ margin: 35px 0px; } .timer-item{ display: inline-block; background: #FA5B0F; margin: 5px 3px; padding: 20px; min-width: 140px; font-size: 50px; font-weight: 700; border-radius: 5px; } .timer-item span{ display: block; font-size: 18px; font-weight: 500; } @media screen and (max-width: 767px){ .site-logo{ margin-bottom: 50px; } .cs-content h1{ font-size: 50px; } .cs-content p{ line-height: 26px; margin: 10px 0px; } .form input[type="email"]{ width: 100%; } }
Click to Copy css
var countdownDate = new Date("Sep 30, 2022 18:01:00").getTime(); var x = setInterval(function(){ var nowDT = new Date().getTime(); var distance = countdownDate - nowDT; var days = Math.floor(distance / (1000 * 60 * 60 * 24)); var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); var seconds = Math.floor((distance % (1000* 60)) / 1000); document.querySelector(".days h3").innerHTML = days; document.querySelector(".hours h3").innerHTML = hours; document.querySelector(".minutes h3").innerHTML = minutes; document.querySelector(".seconds h3").innerHTML = seconds; if(distance < 0){ clearInterval(x); document.querySelector(".countdown-timer").style.display = 'none'; document.querySelector(".cs-content h1").innerHTML = 'Welcome'; } }, 1000);
Click to Copy js
Download File
Click to Generate Link
Post a Comment
0 Comments
ad
Search This Blog
Powered by Blogger
March 2022
1
February 2022
2
Report Abuse
About Me
Gamer VFX
View my complete profile
Follow us
Featured Posts
3/featured/post-list
Recent Posts
3/recent/post-list
Popular Posts
Random Posts
3/random/post-list
Contact Form
Name
Email
*
Message
*
0 Comments