-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 972 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
35
<!DOCTYPE html>
<html lang="en">
<head>
<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>Pomoclock</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="img/pomodoro.png" type="image/x-icon">
</head>
<body>
<header class="head">
<img src="img/pomodoro.png" alt="pomodoro">
<h1>Pomo'clock</h1>
</header>
<section class="wrapper">
<img src="img/pomodoro.png" alt="pomodoro">
<div class="clock">
<h1 id="time">25</h1>
</div>
<div class="controlTime">
<input type="button" value="PLAY" id="play">
<input type="button" value="PAUSE" id="pause">
</div>
</section>
<section class="footer">
© <a href="#">Santiago Cujaban C.</a>
</section>
<script src="app.js"></script>
</body>
</html>