-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Calculate your love compatibility with the Love Calculator app by Ajay Dhangar." />
<meta name="keywords" content="Love Calculator, Love Compatibility, Ajay Dhangar, Relationship Calculator" />
<meta name="author" content="Ajay Dhangar" />
<title>Love Calculator - Ajay Dhangar</title>
<link rel="stylesheet" href="./style.css" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet" />
</head>
<body>
<main>
<div class="container">
<h1 class="title">Love Calculator</h1>
<div class="form">
<input type="text" id="name1" class="input" placeholder="Enter your name" />
<input type="text" id="name2" class="input" placeholder="Enter your partner's name" />
<button class="btn" id="calculate" onclick="loveCalculator()">Calculate</button>
<div class="result" id="result"></div>
</div>
</div>
</main>
<script src="./src.js"></script>
</body>
</html>