Skip to content

Commit

Permalink
Merge pull request #732 from Vickram831/patch-1
Browse files Browse the repository at this point in the history
modify_index.html
  • Loading branch information
Ayushparikh-code authored Oct 29, 2024
2 parents b353bdd + 493dfb1 commit 89cdb8c
Showing 1 changed file with 13 additions and 21 deletions.
34 changes: 13 additions & 21 deletions LOVE-CALCULATOR/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Love Calculator</title>
Expand All @@ -20,37 +19,30 @@

<section class="wrapper">
<h2 class="heading">Welcome to this great invention of Doctor Love!</h2>
<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!
<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!

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. The Love Calculator is an affective way to get an impression of
what the chances are on a relationship between two people.
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.

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>
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>

<div class="box">
<div class="flex-box">
<div class="yourName">
<label for="yourName" class="bold">Your Name</label> <br>
<input type="text" placeholder="Full Name" required>
<input type="text" id="yourName" placeholder="Full Name" required>
</div>
<div class="yourCrush">
<label for="yourCrush" class="bold" >Your Crush</label> <br>
<input type="text" placeholder="Full Name" required>
</div>
</div>
<button onclick="calculateLove()">Calculate love</button>
<div id="lovePercentage">

<label for="yourCrush" class="bold">Your Crush</label> <br>
<input type="text" id="yourCrush" placeholder="Full Name" required>
</div>
</div>
<button onclick="calculateLove()">Calculate Love</button>
<div id="lovePercentage"></div>
</div>
</section>
<script src="script.js"></script>

<script src="script.js"></script>

</body>

</html>
</html>

0 comments on commit 89cdb8c

Please sign in to comment.