-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperfect-match.html
54 lines (50 loc) · 2.71 KB
/
perfect-match.html
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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>quovixi | perfect match </title>
<meta property="og:title" content="quovixi | perfect match" />
<meta property="og:description" content="That L.O.V.E.S name compatibility game you used to play when you were a kid. A project by Vicky Carmichael." />
<meta property="og:url" content="https://quovixi.com/" />
<meta property="og:image" content="https://quovixi.com/assets/perfect-match.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Chicle&family=Hi+Melody&family=Shizuru&family=The+Girl+Next+Door&display=swap" rel="stylesheet">
<link rel="stylesheet" href="perfect-match.css">
<script defer src="https://cloud.umami.is/script.js" data-website-id="ed4a631b-0d49-40eb-9928-b5fe989705d7"></script>
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="ruled-paper" role="main">
<div class="ruled-paper-header"></div>
<div class="ruled-paper-body">
<div class="container">
<a href="/index.html" class="back-to-projects">↜ Back to projects</a>
<h1>L.♡.V.E.S</h1>
<h2>how compatible r u?</h2>
<label for="name1">First person:</label>
<input type="text" id="name1" placeholder="Romeo Montague">
<label for="name2">Second person:</label>
<input type="text" id="name2" placeholder="Juliet Capulet">
<div class="button-container">
<button class="button" onclick="calculateCompatibility()">perfect match?</button>
<div id="warning-message"></div>
</div>
<div class="result" id="result"></div>
<div class="expandable" id="expandable-section">
<span class="show-details" onclick="toggleDetails()">Show working out</span>
<div class="expandable-details" id="details"></div>
</div>
<footer>
<p><span class="irregular-strikethrough">Poprety</span> Property of <a href="https://quovixi.com" target="_blank">Vicky Carmichael</a>. Do <span class="double-underline">not</span> read!</p>
</footer>
</div>
</div>
</div>
<script src="perfect-match.js"></script>
</body>
</html>