-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.27 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
<!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="style.css">
<title>Accessible Modal</title>
</head>
<body>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Aperiam aspernatur optio quam mollitia recusandae, illo magnam
provident perferendis voluptatibus quae esse labore ea corrupti deleniti eaque quidem reiciendis accusamus dolor!</p>
<button class="modal__button button button--primary">Open Modal</button>
<div class="modal" role="dialog" aria-hidden="true" aria-labelledby="modal-title">
<div class="modal__window" role="document">
<header>
<h2 id="modal-title" class="modal__title">Modal Title</h2>
</header>
<div>
<p>Modal content</p>
<label>Some Label</label> <input type="text" /> </div>
<button class="modal__close js-modal__close">
Close
</button>
</div>
<!-- end modal__window -->
<div class="modal__mask"></div>
</div>
<!-- end modal -->
<script src="bundle.js"></script>
</body>
</html>