-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 862 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 862 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creating Popup in javascript</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&family=Roboto:ital,wght@0,300;0,400;0,500;1,100;1,500&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<button class="btn" type="submit" onclick="openPopup()">Submit</button>
<div class="popup" id="popup">
<img src="404-tick.png">
<h2>Thank You!</h2>
<p>Your details has been successfully submitted. Thanks!</p>
<button type="button" onclick="closePopup()">OK</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>