-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BIRTHDAY COUNTDOWN</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<div class="container">
<div class="data">
<h1>BIRTHDAY COUNTER</h1>
<div id="person" class="details"><span>Enter your name :</span>
<input type="text" id="name" placeholder="eg.Pudi Sravan" style="size: 55px;" fdprocessedid="m2zowq">
</div>
<div id="DOB" class="details"><span>Enter your D.O.B :</span>
<input type="date" id="dob-input" style="size: 55px;">
</div>
<button id="start" fdprocessedid="zh4bk9">Start countdown</button>
</div>
<div class="countdown" id="countdown" style="display: none;">
<h1>LET'S PARTYY IN!!!</h1>
<div class="time">
<span id="days" style="font-size: 55px; font-weight: 350;">00</span>
<p style="font-size: 15px; font-weight: 100;">Days</p>
</div>
<div class="time">
<span id="hours" style="font-size: 55px; font-weight: 350;">00</span>
<p style="font-size: 15px; font-weight: 100;">Hours</p>
</div>
<div class="time">
<span id="minutes" style="font-size: 55px; font-weight: 350;">00</span>
<p style="font-size: 15px; font-weight: 100;">Minutes</p>
</div>
<div class="time">l̥
<span id="seconds" style="font-size: 55px; font-weight: 350;">00</span>
<p style="font-size: 15px; font-weight: 100;">Seconds</p>
</div>
</div>
<script src="functions.js"></script>