This repository was archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 2.2 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheet Link -->
<link rel="stylesheet" href="style.css">
<title>PopUp Window</title>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>Click The Button Below to PopUp</h1>
<button>
<i class="btn-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12 5C11.4477 5 11 5.44772 11 6V10C11 10.5523 11.4477 11 12 11C12.5523 11 13 10.5523 13 10V6C13 5.44772 12.5523 5 12 5Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M4 8C4 3.58172 7.58172 0 12 0C16.4183 0 20 3.58172 20 8V16C20 20.4183 16.4183 24 12 24C7.58172 24 4 20.4183 4 16V8ZM18 8V16C18 19.3137 15.3137 22 12 22C8.68629 22 6 19.3137 6 16V8C6 4.68629 8.68629 2 12 2C15.3137 2 18 4.68629 18 8Z"
fill="currentColor" /></svg>
</i>
PopUp</button>
</div>
</section>
<!-- Modal or PopUp Section -->
<section class="modal-container">
<div class="modal-parent">
<div class="modal">
<div class="modal-heading">
<h1>Did You Know?</h1>
</div>
<div class="modal-body">
<p>
<li>11% of people are left handed.</li>
<li>August has the highest percentage of births.</li>
<li>Unless food is mixed with saliva you can't taste it.</li>
<li>The average person falls asleep in 7 minutes.</li>
<li>A bear has 42 teeth.</li>
</p>
</div>
<span class="X">×</span>
</div>
</div>
</section>
<!-- JavaScript File Source -->
<script src=" main.js"></script>
</body>
</html>