forked from kontur-web-courses/positioning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
35 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Практика позиционирования</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section class="logos">
<div class="mickey">
<div class="ear left"></div>
<div class="ear right"></div>
<div class="head"></div>
</div>
<div class="japan-flag"></div>
<div class="windows-logo">
<span class="span1"></span><span class="span2"></span><span class="span3"></span><span class="span4"></span>
</div>
</section>
<button class="openModal">Открыть модальное окно</button>
<div class="modalMain">
<div class="modal">
<section class="progress-bar">
<div class="fill"></div>
<span class="text text-white">Loading...</span>
<span class="text text-black">Loading...</span>
</section>
<button class="closeModal"><img src="https://cdn-icons-png.flaticon.com/128/1828/1828665.png" alt="Красный крест"></button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>