-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (64 loc) · 2.86 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
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apathy Wifu Network</title>
<link rel="stylesheet" href="styles/general.css">
<link rel="stylesheet" href="styles/index.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/media-queries.css">
<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=Raleway:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<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=Raleway:ital,wght@0,100..900;1,100..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap"
rel="stylesheet">
<link href="https://api.fontshare.com/v2/css?f[]=general-sans@400,600,700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="assets/favicon/lucy.png">
</head>
<body>
<main class="main-section">
<section class="intro-section">
<h1 class="heading1 main-heading">Apathy Wifu Network</h1>
<div class="paragraph-main-description-container">
<p class="paragraph-main-description">Apathy Waifu Network: Discover, rate, and share your favorite anime waifus
with a community of fellow fans. Join the adventure!
</p>
</div>
</section>
<section class="rating-section">
<h2 class="rating-section-heading">Which one do you prefer?</h2>
<div class="wifu-container">
<div class="wifu1-container">
<div class="wifu1">
<img src="assets/images/makima.jpg" alt="Makima" class="wifu1-img">
</div>
<p class="wifu-name wifu1-name">Makima</p>
</div>
<div class="wifu2-container">
<div class="wifu2">
<img src="assets/images/fubuki.jpg" alt="Fubuki" class="wifu2-img">
</div>
<p class="wifu-name wifu2-name">Fubuki</p>
</div>
</div>
</section>
</main>
<hr>
<footer class="footer-container">
<div class="footer-links">
<a href="https://github.com/ApatheticDamn" target="_blank"><img src="assets/icons/dark/icons8-github-480.png"
alt="Github" class="footer-link">Github</a>
<a href="https://discord.com/invite/7zE6zr3Ys2" target="_blank"><img
src="assets/icons/dark/icons8-discord-500.png" alt="Github" class="footer-link">Discord</a>
<a href="https://open.spotify.com/playlist/6cHhrkvftGIuT1vaxP7iMZ" target="_blank"><img
src="assets/icons/dark/icons8-spotify-500.png" alt="Github" class="footer-link">Spotify</a>
</div>
</footer>
<script src="scripts/main.js"></script>
</body>
</html>