-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #824 from Rohit12012007/patch-5
Update index.html
- Loading branch information
Showing
1 changed file
with
9 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>countdown</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="stylesheet" href="style.css" | ||
</head> | ||
|
||
<body> | ||
<h1>CountDown To New Year</h1> | ||
<div class="countdown-c"> | ||
<div class="count days-c"> | ||
<p class="big" id="days">0</p> | ||
<span>Days</span> | ||
</div> | ||
<div class="count hours-c"> | ||
<p class="big" id="hours">0</p> | ||
<span>Hours</span> | ||
</div> | ||
<div class="count minutes-c"> | ||
<p class="big" id="minutes">0</p> | ||
<span>Minutes</span> | ||
</div> | ||
<div class="count seconds-c"> | ||
<p class="big" id="seconds">0</p> | ||
<span>Seconds</span> | ||
<div> | ||
<h1>Countdown to New Year</h1> | ||
<div> | ||
<span id="days">00</span> Days | ||
<span id="hours">00</span> Hours | ||
<span id="minutes">00</span> Minutes | ||
<span id="seconds">00</span> Seconds | ||
</div> | ||
</div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
|
||
</html> | ||
</html> |