Create a Landing Page With a Count Down Timer

Lanka Rathnayaka
2 min readNov 8, 2023

Hi guys, here is the code for my YouTube video on creating a website landing page with a countdown using HTML and CSS.

Here is the video with code explanation Video will be available in 15th November 2023
Make sure you subscribe to my channel to keep notified.

🚩 My Channel and Subscribe — http://bit.ly/3QnESnI

HTML and JS Code

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<div class="container">
<div class="content background">
<h1>We are <span>Online In</span></h1>
<div class="launch-timer">
<div>
<p id="days">00</p>
<span>Days</span>
</div>
<div>
<p id="hours">00</p>
<span>Hours</span>
</div>
<div>
<p id="minutes">00</p>
<span>minutes</span>…

--

--

Lanka Rathnayaka
Lanka Rathnayaka

No responses yet