-
Notifications
You must be signed in to change notification settings - Fork 0
/
among-us.html
33 lines (33 loc) · 1.3 KB
/
among-us.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Daily Dose of Memes</title>
<link rel="icon" type="x/icon" href="/images/sanic.png">
<link rel="stylesheet" href="/css/styles.css">
<script src="/main.js"></script>
<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=Quicksand:wght@300..700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<div class="navbar">
<h2 class="main-heading"><a href="login-success.html">Daily dose of memes</a></h2>
<nav class="nav-flex">
<ul>
<li><a href="login-success.html">Home</a></li>
<li><a href="trendy.html">Trendy</a></li>
<li><a href="sus.html">Sus</a></li>
<li><a href="among-us.html">Among us</a></li>
</ul>
</nav>
</div>
</div>
<img class="hero-image" src="/images/nyan-cat.jpg">
</header>
<main>
<img id="bruh-image" src="/images/smudge.png">
</main>
</body>
</html>