-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (116 loc) · 4.38 KB
/
index.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Love Calculator - FLAMES Game</title>
<meta
name="keywords"
content="love calculator, love flames, flames test, flames calculator, love compatibility, love test, love relationship, love test game"
/>
<meta
name="description"
content="An online Love Calculator to test your relationship compatibility. Test the status of your relationship with your crush/partner based on the FLAMES game."
/>
<meta name="robots" content="index, follow" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="shortcut icon" type="image/png" sizes="192x192" href="/favicon-192x192.png" />
<link
rel="preload"
href="./fonts/BioRhyme-Regular-latin.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<link
rel="preload"
href="./fonts/BioRhyme-Regular-latin_ext.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./fonts/fonts.css" />
<link rel="stylesheet" type="text/css" href="./css/normalize.min.css" />
<link rel="stylesheet" type="text/css" href="./css/style.css" />
<script src="./js/app.js"></script>
<script>
var ga = document.createElement("script");
ga.async = true;
ga.src = "https://www.googletagmanager.com/gtag/js?id=G-GJCHG84XCY";
document.head.appendChild(ga);
window.dataLayer = window.dataLayer || [];
window.gtag = function () {
window.dataLayer.push(arguments);
};
window.gtag("js", new Date());
window.gtag("config", "G-GJCHG84XCY");
</script>
</head>
<body onload="urlQr();">
<div class="container">
<section>
<p class="title">Flames Calculator</p>
<p class="text-center">
Do you want to know what type of relationship
<span style="color: #038970">(friendship, love, affection, marriage, enmity, sisterhood)</span> you are going
to have with your dream partner?
</p>
</section>
<section id="flames_calc">
<p id="fc_heading">Give two names to calculate FLAMES !</p>
<form id="flames_form" name="flames_form" onsubmit="return loveCalc();">
<input
type="text"
class="form_control"
id="name1"
name="yname"
placeholder="your name"
onkeypress="return validateName(event);"
onkeyup="updateURL();onEnter(event);"
pattern="[a-zA-Z ]*$"
title="Name"
autofocus
required
/>
<input
type="text"
class="form_control"
id="name2"
name="pname"
placeholder="your partner/crush name"
onkeypress="return validateName(event);"
onkeyup="updateURL();onEnter(event);"
pattern="[a-zA-Z ]*$"
title="Name"
required
/>
<div class="button_container">
<input id="btnFlames" class="button_r btn btn-danger" type="submit" value="FLAMES" />
<input
id="btnReset"
class="button_r bg_white btn btn-light"
type="button"
onclick="resetVal();"
value="Reset"
/>
</div>
</form>
<div id="flames_result" class="text-center" oncontextmenu="return false;">
<img id="flames_result_img" src="" alt="flames-result" />
<p id="flames_result_text"></p>
</div>
</section>
<section>
<p>
<span style="color: #038970; font-weight: 600">Note: </span>If you are in love with someone, and if you would
like to test the love compatibility between him/her then take this Flames test. Just enter your name and your
partner/crush name and then click on FLAMES. Do not take the results of flames game too seriously. It is just
for fun.
</p>
</section>
</div>
</body>
</html>