0% found this document useful (0 votes)
10 views1 page

Countdown Timer for Upcoming Event

This HTML document contains a coming soon page with a countdown timer to February 20, 2021 at 2:03 PM. The page includes a logo, heading, paragraph of placeholder text, and countdown displayed as days, hours, minutes and seconds that will be populated using JavaScript. It provides the structure and elements for a basic coming soon page with countdown timer.

Uploaded by

Yann Pollet
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views1 page

Countdown Timer for Upcoming Event

This HTML document contains a coming soon page with a countdown timer to February 20, 2021 at 2:03 PM. The page includes a logo, heading, paragraph of placeholder text, and countdown displayed as days, hours, minutes and seconds that will be populated using JavaScript. It provides the structure and elements for a basic coming soon page with countdown timer.

Uploaded by

Yann Pollet
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="[Link]">
<title>Décompte JS</title>
</head>
<body>

<div class="wrap">

<div class="logo">
<img src="" alt="">
</div>

<div class="content">
<h1>Coming soon</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Molestias
possimus voluptas in quibusdam commodi porro delectus beatae incidunt nobis nam,
quos impedit voluptatem, ipsa omnis. Nam vero ratione voluptatem maiores?</p>

<div class="numbers" id="countdown" data-time="2021-02-


20T14:03:28+0000">
<div class="bloc"><strong id="days"></strong><em>Jours</em></div>
<div class="bloc"><strong id="hours"></strong><em>Heures</em></div>
<div class="bloc"><strong
id="minutes"></strong><em>Minutes</em></div>
<div class="bloc"><strong
id="seconds"></strong><em>Secondes</em></div>
</div>
</div>

<div class="footer"></div>

</div>

<script src="[Link]"></script>
</body>
</html>

You might also like