This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
82 lines (78 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Love Calculator</title>
</head>
<body>
<div class="wrapper">
<div class="heading">
<h1>Love ♥ Calculator</h1>
<h4>Get Your Own Love Result Instantly*</h4>
</div>
<div class="maincontent">
<div>
<!-- Your name Inputfield -->
<label for="yourname">*Your Name</label><br />
<input
type="text"
id="yourname"
placeholder="Enter Your Name"
spellcheck="false"
maxlength="30"
required
/>
</div>
<div>
<!-- His/Her name Inputfield -->
<label for="theirname">*His/Her Name</label><br />
<input
type="text"
id="theirname"
placeholder="Enter His/Her Name"
spellcheck="false"
maxlength="30"
required
/>
</div>
</div>
<button type="submit">❤ CALCULATE ❤</button>
<div class="result">
<h2>Result</h2>
<div class="divider"></div>
<p id="yourlovescoreis"></p>
<h1 id="score"></h1>
<p id="loveinfo"></p>
<p
id="reload"
style="
cursor: pointer;
display: none;
margin-top: 30px;
font-weight: 700;
"
onClick="window.location.reload();"
>
↺ Re Calculate
</p>
</div>
</div>
<div class="footer">
<p style="color: #000">
Made With <span style="color: #ff4136; font-size: 25px">❤</span> By
<a
style="text-decoration: none; font-weight: bold; color: #ff4136"
target="_blank"
href="https://alnahian2003.github.io"
>Al Nahian</a
>
<br />
<small>*Fun Purpose Only</small>
</p>
</div>
<script type="text/javascript"></script>
<script src="app.js"></script>
</body>
</html>