-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorderbutton.html
More file actions
44 lines (35 loc) · 1011 Bytes
/
Copy pathorderbutton.html
File metadata and controls
44 lines (35 loc) · 1011 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styling.css">
<style>
/* BACKGROUND OVERLAY */
</style>
</head>
<body>
<!-- BUTTON -->
<!-- <button onclick="openModal()" class="btn">Order Now</button> -->
<!-- POPUP -->
<div id="orderModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<h2>Place Your Order</h2>
<input type="text" placeholder="Your Name">
<input type="text" placeholder="Phone Number">
<textarea placeholder="Your Order"></textarea>
<button class="btn">Submit</button>
</div>
</div>
<script>
function openModal(){
document.getElementById("orderModal").style.display = "flex";
}
function closeModal(){
document.getElementById("orderModal").style.display = "none";
}
</script>
</body>
</html>