Skip to content

Commit 493dfb1

Browse files
authored
modify_index.html
The Love Calculator is not meant to provide serious insights into relationships but serves as a lighthearted tool for users to have fun and share a laugh with friends or loved ones. It can be a great conversation starter at parties or social gatherings, allowing people to engage in a playful activity.
1 parent ec021c9 commit 493dfb1

File tree

1 file changed

+13
-21
lines changed

1 file changed

+13
-21
lines changed

LOVE-CALCULATOR/index.html

Lines changed: 13 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<link rel="preconnect" href="https://fonts.gstatic.com">
88
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
9-
<link rel="preconnect" href="https://fonts.gstatic.com">
109
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
1110
<link rel="stylesheet" href="style.css">
1211
<title>Love Calculator</title>
@@ -20,37 +19,30 @@
2019

2120
<section class="wrapper">
2221
<h2 class="heading">Welcome to this great invention of Doctor Love!</h2>
23-
<p class="about">We all know that a name can tell a lot about a person. Names are not randomly chosen: they all
24-
have a meaning. Doctor Love knew this so he made another great invention just for the lonely you!
22+
<p class="about">We all know that a name can tell a lot about a person. Names are not randomly chosen: they all have a meaning. Doctor Love knew this, so he made another great invention just for the lonely you!
2523

26-
Sometimes you'd like to know if a relationship with someone could work out. Therefore Doctor Love himself
27-
designed this great machine for you. With The Love Calculator you can calculate the probability of a
28-
successful relationship between two people. The Love Calculator is an affective way to get an impression of
29-
what the chances are on a relationship between two people.
24+
Sometimes you'd like to know if a relationship with someone could work out. Therefore Doctor Love himself designed this great machine for you. With The Love Calculator, you can calculate the probability of a successful relationship between two people.
3025

31-
To find out what the chances for you and your dream partner are, just fill in both full names (both first
32-
and last name) in the two text boxes below, and press Calculate.</p>
26+
To find out what the chances for you and your dream partner are, just fill in both full names (both first and last name) in the two text boxes below and press Calculate.</p>
3327

3428
<div class="box">
3529
<div class="flex-box">
3630
<div class="yourName">
3731
<label for="yourName" class="bold">Your Name</label> <br>
38-
<input type="text" placeholder="Full Name" required>
32+
<input type="text" id="yourName" placeholder="Full Name" required>
3933
</div>
4034
<div class="yourCrush">
41-
<label for="yourCrush" class="bold" >Your Crush</label> <br>
42-
<input type="text" placeholder="Full Name" required>
43-
</div>
44-
</div>
45-
<button onclick="calculateLove()">Calculate love</button>
46-
<div id="lovePercentage">
47-
35+
<label for="yourCrush" class="bold">Your Crush</label> <br>
36+
<input type="text" id="yourCrush" placeholder="Full Name" required>
37+
</div>
4838
</div>
39+
<button onclick="calculateLove()">Calculate Love</button>
40+
<div id="lovePercentage"></div>
4941
</div>
5042
</section>
51-
52-
<script src="script.js"></script>
53-
43+
44+
<script src="script.js"></script>
45+
5446
</body>
5547

56-
</html>
48+
</html>

0 commit comments

Comments
 (0)