summary refs log tree commit diff stats
path: root/valentine/2.html
diff options
context:
space:
mode:
authorCrystal <crystal@wizard.tower>2024-02-12 20:53:06 +0100
committerCrystal <crystal@wizard.tower>2024-02-12 20:53:06 +0100
commitc9d33ec5918d1057973d37675255a393474b54a0 (patch)
tree5c490798dc2f9416a16bd09e2aada155983c7667 /valentine/2.html
parent6119a90a492918ce8fbdc0ec64ef01461f468a90 (diff)
downloadwww-c9d33ec5918d1057973d37675255a393474b54a0.tar.gz
Valentine Special
Diffstat (limited to 'valentine/2.html')
-rw-r--r--valentine/2.html65
1 files changed, 65 insertions, 0 deletions
diff --git a/valentine/2.html b/valentine/2.html
new file mode 100644
index 0000000..99e04c8
--- /dev/null
+++ b/valentine/2.html
@@ -0,0 +1,65 @@
+
+<!doctype html>
+<html class="no-js" lang="">
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="x-ua-compatible" content="ie=edge">
+        <title>Will you be my valentine ?</title>
+        <meta name="description" content="">
+        <meta name="viewport" content="width=device-width, initial-scale=1">
+        <link rel="stylesheet" type="text/css" href="src/colors.css" />
+        <link rel="stylesheet" type="text/css" href="src/style.css" />
+
+    </head>
+    <body>
+        <style>
+          .yes {
+             background-color: #4CAF50;
+             border: none;
+             color: white;
+             padding: 15px 15px;
+             text-align: center;
+             text-decoration: none;
+             display: inline-block;
+             font-size: 33px;
+             margin: 4px 4px;
+             cursor: pointer;
+         }
+         .no {
+             background-color: #f44336;
+             border: none;
+             color: white;
+             padding: 15px 15px;
+             text-align: center;
+             text-decoration: none;
+             display: inline-block;
+             font-size: 10px;
+             margin: 4px 4px;
+             cursor: pointer;
+         }
+         .answers {
+            text-align: center;
+            margin-top: 50px;
+         }
+
+         a {
+            color: white;
+            text-decoration: none;
+            padding: 10px 20px;
+            border-radius: 5px;
+         }
+
+        </style>
+        <h1>Will you be my valentine ? </h1>
+        <div class="answers">
+        <img src="src/chibi.gif" alt="heart" class="heart" width="200px" height="200px">
+        <br/>
+        <div class="yes">
+            <a href="yes.html">Yes</a>
+        </div>
+        <div class="no">
+            <a href="3.html">Are you sure about that ?</a>
+        </div>
+        </div>
+    </body>
+</html>
ref='#n81'>81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
122
123
124
125
126
127
128
129
130
131
132
133
134