summaryrefslogtreecommitdiff
path: root/archive/modal.html
diff options
context:
space:
mode:
Diffstat (limited to 'archive/modal.html')
-rw-r--r--archive/modal.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/archive/modal.html b/archive/modal.html
new file mode 100644
index 0000000..93da068
--- /dev/null
+++ b/archive/modal.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+<title>W3.CSS</title>
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
+<body>
+
+<div class="w3-container">
+ <h2>W3.CSS Modal</h2>
+ <p>Add the w3-card-* class to the w3-modal-content container to display the modal as a card.</p>
+ <button onclick="document.getElementById('id01').style.display='block'" class="w3-button w3-black">Open Modal</button>
+
+ <div id="id01" class="w3-modal">
+ <div class="w3-modal-content w3-card-4">
+ <header class="w3-container w3-teal">
+ <span onclick="document.getElementById('id01').style.display='none'"
+ class="w3-button w3-display-topright">&times;</span>
+ <h2>Modal Header</h2>
+ </header>
+ <div class="w3-container">
+ <p>Some text..</p>
+ <p>Some text..</p>
+ </div>
+ <footer class="w3-container w3-teal">
+ <p>Modal Footer</p>
+ </footer>
+ </div>
+ </div>
+</div>
+
+</body>
+</html>
+