-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (47 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="/images/heart.png" />
<title>Love Prediction</title>
<script>navigator.serviceWorker.register("service-worker.js")</script>
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="styles.css">
<meta name="description" content="Predict the love">
<meta name="theme-color" content="#f5bebe">
<!-- Open Graph Tags for Social Media Sharing (optional) -->
<meta property="og:type" content="website">
<meta property="og:title" content="Love Prediction">
<meta property="og:description" content="Predict the love for fun">
<meta property="og:image" content="https://example.com/your-image.png">
<meta property="og:url" content="https://example.com/your-page-url">
<meta property="og:site_name" content="Luv Prediction">
<!-- Twitter Card Tags for Twitter Sharing (optional) -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@yourtwitterhandle">
<meta name="twitter:title" content="Your Twitter Card Title">
<meta name="twitter:description" content="Predict the love for fun">
<meta name="twitter:image" content="https://example.com/your-image.png">
<meta name="twitter:url" content="https://example.com/your-page-url">
</head>
<body>
<div class="container">
<img src="images/hearts.png" class="heart-image hearts-top-left" alt="Hearts">
<div class="anh1"><h1 >Love Prediction </h1></div>
<label for="person1">Person 1:</label>
<input type="text" id="person1" placeholder=" First person's name" ><br>
<label for="person2">Person 2:</label>
<input type="text" id="person2" placeholder="Second person's name" ><br>
<button id="calculateBtn">Calculate ❤</button>
<button id="resetBtn"><img src="images/reset.png" height="25px" width="25px"></button>
<button id="swapBtn"><img src="images/swap.png" height="25px" width="25px"></button>
<div id="heartContainer" class="heart-container">
<div id="heartResult" class="heart-result"></div>
</div>
<img src="images/dove.png" class="heart-image dove-bottom-right" alt="Dove">
<div id="loader" class="heart-loader"></div>
</div>
<script src="script.js"></script>
</body>
</html>