-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6Modal.html
More file actions
30 lines (27 loc) · 802 Bytes
/
Copy path6Modal.html
File metadata and controls
30 lines (27 loc) · 802 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>6Modal</title>
<link rel="stylesheet" href="CSS/6Modal.css">
</head>
<body>
<!-- Overlay -->
<div class="overlay" id="overlay"></div>
<!-- Modal -->
<div class="modal" id="modal">
<button class="closeBtn" id="closeBtn">×</button>
<h2> Smartz WELCOME YOU ! </h2>
<p> THIS IS A MODAL!</p>
<button class="clickBtn" id="clickBtn"> Click me </button>
</div>
<!-- Hero Section -->
<div class="hero">
<h2> Smartz Modal Project </h2>
<p>Click the button below to open the modal</p>
<button class="openBtn" id="openBtn">Open Modal</button>
</div>
<script src="JS/6Modal.js"></script>
</body>
</html>