Sorry to clutter your screen with a noob question.
I'm making a pomodoro timer app (My first app outside of unity games) I just need to know how to make the timer display, and how to make it count down from whatever number the user input.
I've looked at a few pomodoro apps online but haven't found a solution.
Here is the HTML I have written so far:
<!DOCTYPE html>
<html lang="en">
<head>
<h1>Pomodori</h1>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Pomodoro App</title>
</head>
<script>
</script>
<body>
<button>Work</button>
<button>Short Break</button>
<button>Long Break</button>
<button>Pause</button>
</body>
</html>
I just need to know how to make a basic timer and display it on the index.html page.