-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (70 loc) · 2.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>calcudate</title>
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles&display=swap" rel="stylesheet">
<!-- css style sheet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section class="front-page">
<header>
<span>
<!-- <h1>Calcudate</h1> -->
<!-- <h1 style="font-style: oblique">Calcudate</h1> -->
<h1 class="newfont">Calcu-date</h1>
</span>
<!-- <span>
<h1 style="font-weight: lighter">Calcudate</h1>
</span> -->
<h4 class="newfont">Let Fate Decide!</h4>
</header>
<form id="search-form">
<input type="text" class="form-input-your" placeholder="Your Name">
<input type="text" class="form-input-crush" placeholder="Crush-name">
<button type="submit" class="btn-floating btn-large waves-effect waves-light red pulse" id="button">❤️</button>
</form>
<div class="heart-shape"></div>
</section>
<section class="result-page">
<header>
<h2 class="header">Your Results are in!</h2>
</header>
<hr>
<br>
<br>
<main>
<img src="./assets/image/pngwing.com (2).png" alt="heart-image" class="percentage-img">
<h3 class="percentage">percentage</h3>
<h4 class="result-sentence">result</h4>
<button id="btn-front" class="btn-floating btn-large waves-effect waves-light red pulse">❤️🩹</button>
<h3>Click the broken heart to try a new match!</h3>
<br>
<hr>
</main>
<footer>
<div class="recommendation">
<button class="tabBtn waves-effect waves-light btn pink" data-info="movie">Movie</button>
<button class="tabBtn waves-effect waves-light btn pink" data-info="quote">Love quote</button>
<button class="tabBtn waves-effect waves-light btn pink" data-info="activity">Magic recipe</button>
</div>
<main id="content" class="content-page">
<ul id="contentList"></ul>
</main>
</footer>
</section>
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="./assets/js/script.js">
</script>
</body>
</html>