-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (28 loc) · 831 Bytes
/
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
33
34
<!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>Pomodoro</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div id="app">
<div id="time">
<div id="value"></div>
<div id="taskName"></div>
</div>
<div class="tasks-container">
<div class="form">
<form action="" id="form">
<input type="text" id="itTask">
<input type="submit" id="bAdd" value="Agregar Tarea">
</form>
</div>
<div id="tasks"></div>
</div>
</div>
<script src="./js/codigo.js"></script>
</body>
</html>