-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<main class="main" id="main-0">
<h1 class="pomodoro__title">Pomodoro</h1>
<div class="app">
<div class="pomodoro__counter-wrapper">
<p class="pomodoro__timer">00:00</p>
<h2 class="pomodoro__activity"></h2>
</div>
<form action="" class="pomodoro__form">
<input type="text" class="pomodoro__input-task" id="task" required name="title">
<input type="submit" class="pomodoro__add-btn" id="addTask" value="Add Task" name="taskbtn">
</form>
<section class="pomodoro__task-list-wrapper">
<ul class="pomodoro__task-list"></ul>
</section>
</div>
</main>
<script type="module" src="./main.js" defer></script>
</body>
</html>