31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Countdown Timer</title>
|
|
<link href='https://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="icon" href="https://fav.farm/🔥" />
|
|
</head>
|
|
<body>
|
|
<div class="timer">
|
|
<div class="timer__controls">
|
|
<button data-time="20" class="timer__button">20 Secs</button>
|
|
<button data-time="300" class="timer__button">Work 5</button>
|
|
<button data-time="900" class="timer__button">Quick 15</button>
|
|
<button data-time="1200" class="timer__button">Snack 20</button>
|
|
<button data-time="3600" class="timer__button">Lunch Break</button>
|
|
<form name="customForm" id="custom">
|
|
<input type="text" name="minutes" placeholder="Enter Minutes">
|
|
</form>
|
|
</div>
|
|
<div class="display">
|
|
<h1 class="display__time-left"></h1>
|
|
<p class="display__end-time"></p>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="scripts-START.js"></script>
|
|
</body>
|
|
</html>
|