-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>pop up alert</title>
<link rel="stylesheet" href="pop.css">
</head>
<body>
<div class="container">
<section>
<div class="center">
<h1> click the button below to see the pop up</h1>
<!-- onclick="appear()" -->
<button type="button" name="button" > click for model</button>
</div>
</section>
<div class="model-parent">
<div class="model">
<p>background image by Breno Machado @brenomachado</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
</p>
<span draggable="true" class="X">×</span>
</div>
</div>
</div>
<script src="pop.js" charset="utf-8"></script>
</body>
</html>