-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (57 loc) · 2.09 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SoftUni Creative Timer</title>
<link rel="stylesheet" href="./styles/main.css" type=text/css>
<link rel="stylesheet" href="./styles/modal.css" type=text/css>
<link rel="stylesheet" href="./styles/carousel.css">
<link href="./public/favicon.ico" rel="shortcut icon" type="image/x-icon">
</head>
<body>
<div class="site-wrapper">
<header>
<div class="header-logo">
<img src="./public/logo.svg" alt="softni-logo" />
</div>
</header>
<div class="main-wrapper">
<div class="time-container">
<div class="time">
<p class="m">00</p>
<p>:</p>
<p class="s">00</p>
</div>
</div>
<div class="slider">
<div id="partners"></div>
</div>
</div>
<div class="modal-overlay" id="modal-overlay"></div>
<div class="modal" id="modal">
<button class="close-button" id="close-button" title="Close">
<span aria-hidden="true">×</span>
</button>
<section class="modal-content">
<form class="time-form">
<div>
<input min="0" max="59" placeholder="Minutes" tabindex="1" type="number" name="minutes">
<input min="0" max="59" placeholder="Seconds" tabindex="2" type="number" name="seconds">
</div>
<button tabindex="3" type="submit">Start</button>
</form>
<div class="suggestions">
<div>05</div>
<div>10</div>
<div>15</div>
<div>20</div>
<div>25</div>
<div>30</div>
</div>
</section>
</div>
</div>
<script type="module" src="./scripts/index.js"></script>
</body>
</html>