mirror of
https://github.com/FranP-code/Vanilla-Javascript-Counter.git
synced 2025-10-12 23:52:56 +00:00
37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<!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">
|
|
<title>Vanilla Javascript Counter</title>
|
|
<script src="./script.js"></script>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<div class="header-container">
|
|
<header>
|
|
<h1>Vanilla Javascript Counter</h1>
|
|
</header>
|
|
</div>
|
|
|
|
<form id="form">
|
|
<div class="input-container">
|
|
<label>Thing to count</label>
|
|
<input type="number" placeholder="Number" required min="0">
|
|
</div>
|
|
<div class="input-container">
|
|
<label>Seconds between number and number</label>
|
|
<input type="number" placeholder="Number" required min="0">
|
|
</div>
|
|
<button id="form-button">START</button>
|
|
</form>
|
|
|
|
<div class="counter-element-container">
|
|
<div id="counter-element">
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |