-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="tag_version" content="VERSION_PLACEHOLDER" />
<title>
Modal Window | A modal window UI component crafted with vanilla JavaScript
</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<button class="show-modal">Show Modal</button>
<div class="modal hidden">
<button class="close-modal">×</button>
<div class="modal-title">
<h2>What is Lorem Ipsum?</h2>
</div>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
</div>
<div class="overlay hidden"></div>
<script src="script.js"></script>
</body>
</html>