-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (42 loc) · 1.55 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
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Importieren vom CSS -->
<link rel="stylesheet" href="style.css">
<!-- Webseiten Titel und FavIcon -->
<title>Love Link</title>
<link rel="icon" type="image/x-icon" href="https://cdn-icons-png.flaticon.com/512/677/677684.png">
</head>
<body>
<!-- Preloader -->
<div id="preloader" style="display: none;"></div>
<!-- Preloader Funktion -->
<script>
var loader = document.getElementById("preloader");
function disableLoader() {
var loader = document.getElementById("preloader");
loader.style.display = "none";
}
setTimeout(function() {
loader.style.display = "none";
}, 1500);
</script>
<!-- Love Seite -->
<div class="love-container">
<h1>Welcome to Love Link</h1>
<p>Calculate your Love Strength. ❤</p>
<!-- Namensfelder -->
<div>
<label for="name1">Enter Name:</label>
<input type="text" id="name1" placeholder="Pookie 1">
</div>
<div>
<label for="name2">Enter Name:</label>
<input type="text" id="name2" placeholder="Pookie 2">
</div>
<!-- Calculate Button -->
<button onclick="calculateLoveStrength()">❤ Calculate ❤</button>
</div>
<!-- Script Einbetten -->
<script src="/js.js"></script>
</body></html>