-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 2.01 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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./index.css">
<title>Document</title>
</head>
<body>
<header></header>
<aside></aside>
<main>
<article class="user">
<section class="user-image">
<div class="user-head-top-v"></div>
<div class="user-head-bottom-wrapper">
<div class="user-head-bottom-left-v"></div>
<div class="user-head-bottom-middle-v"></div>
<div class="user-head-bottom-right-v"></div>
</div>
</section>
<section class="audio-wrapper">
<audio class="audio-v" type="audio/wav"></audio>
</section>
<section class="user-controll-panel-wrapper">
<form class="user-form">
<div class="user-form-input-wrapper">
<input id='hours-v' type="text" pattern="[0-9]{1,2}" placeholder="HOURS">
<input id='minutes-v' type="text" pattern="[0-9]{1,2}" placeholder="MINUTES">
</div>
<button class="button-get-time-v">What time is it?</button>
</form>
</section>
</article>
<article class="user">
<section class="user-image">
<div class="user-head-top-l"></div>
<div class="user-head-bottom-wrapper">
<div class="user-head-bottom-left-l"></div>
<div class="user-head-bottom-middle-l"></div>
<div class="user-head-bottom-right-l"></div>
</div>
</section>
<section class="audio-wrapper">
<audio class="audio-l" type="audio/wav"></audio>
</section>
<section class="user-controll-panel-wrapper">
<form class="user-form">
<div class="user-form-input-wrapper">
<input id='hours-l' type="text" pattern="[0-9]{1,2}" placeholder="HOURS">
<input id='minutes-l' type="text" pattern="[0-9]{1,2}" placeholder="MINUTES">
</div>
<button class="button-get-time-l">What time is it?</button>
</form>
</section>
</article>
</main>
<aside></aside>
<footer></footer>
<script src="./index.js"></script>
</body>
</html>