-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4116cf3
Showing
1 changed file
with
48 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" > | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>CodePen - Digital Clock Dark/Light</title> | ||
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css'><link rel="stylesheet" href="./style.css"> | ||
|
||
</head> | ||
<body> | ||
<!-- partial:index.partial.html --> | ||
<section> | ||
|
||
<div class="container"> | ||
<div class="icons"> | ||
<i class="fas fa-moon"></i> | ||
<i class="fas fa-sun"></i> | ||
</div> | ||
<div class="time"> | ||
<div class="time-colon"> | ||
<div class="time-text"> | ||
<span class="num hour_num">08</span> | ||
<span class="text">Hours</span> | ||
</div> | ||
<span class="colon">:</span> | ||
</div> | ||
<div class="time-colon"> | ||
<div class="time-text"> | ||
<span class="num min_num">45</span> | ||
<span class="text">Minutes</span> | ||
</div> | ||
<span class="colon">:</span> | ||
</div> | ||
<div class="time-colon"> | ||
<div class="time-text"> | ||
<span class="num sec_num">06</span> | ||
<span class="text">Seconds</span> | ||
</div> | ||
<span class="am_pm">AM</span> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</section> | ||
<!-- partial --> | ||
<script src="./script.js"></script> | ||
|
||
</body> | ||
</html> |