-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 1.99 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 1.99 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
<meta charset="utf-8">
<meta name="viewport" content="width = device-width, initial-scale=1" />
</head>
<body>
<header class="header"> <!--!!!!! -->
<div class="header__btns-block">
<div class="header__btns-label">Random api:</div>
<button class="header__btn" id="btn-load_rapi">Load</button>
</div>
<div class="header__btns-block">
<div class="header__btns-label">Local storage:</div>
<button class="header__btn" id="btn-load_local">Load</button>
<button class="header__btn" id="btn-reset_local">Reset</button>
</div>
<div class="header__btns-block">
<button class="header__btn header__btn_remove-margin" id="btn-clear">Clear</button>
</div>
</header>
<main class="main main_display-left"></main> <!--!!!!! -->
<footer class="footer footer_text_center">
<span class="footer__coryright">(c) Coryright Blah-blah-blah</span>
</footer>
<div class="modal" id="modal">
<div class="modal__person-card">
<div class= "modal__person-name">
<span class="modal__person-label">Name:</span>
<span class="modal__person-text"></span>
</div>
<div class= "modal__person-email">
<span class="modal__person-label">Email:</span>
<span class="modal__person-text"></span>
</div>
<div class= "modal__person-phone">
<span class="modal__person-label">Phone:</span>
<span class="modal__person-text"></span>
</div>
<div class= "modal__person-location">
<span class="modal__person-label">Email:</span>
<span class="modal__person-text"></span>
</div>
<button class="modal__btn" id="btn-save_local">Save</button>
</div>
</div>
<script src="./dist/bundle.js"></script>
</body>
</html>