forked from chriscarrillo/Reciplease
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.php
28 lines (23 loc) · 772 Bytes
/
demo.php
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
<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
<link rel="stylesheet" type="text/css" href="styles/default.css" />
<link rel="stylesheet" type="text/css" href="styles/medium.css" media="only screen and (max-width: 1100px)" />
<link rel="stylesheet" type="text/css" href="styles/small.css" media="only screen and (max-width: 750px)" />
<script type="text/javascript" src="js/PopupWindow.js"></script>
</head>
<body onload="popup()">
<h2>Modal Example</h2>
<!-- Trigger/Open The Modal -->
<button id="myBtn">Open Modal</button>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Some text in the Modal..</p>
</div>
</div>
</body>
</html>