-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (45 loc) · 1.96 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
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frank's 40th Birthday</title>
<link href="styles/normalize.css" type="text/css" rel="stylesheet"/>
<link href="styles/styles.css" type="text/css" 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=Noto+Sans:wght@200;300;400;500;600;700;800&family=Press+Start+2P&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/94dc97db2e.js" crossorigin="anonymous"></script>
<meta charset="utf-8">
</head>
<body class="body">
<header class="header">
<nav class="navbar">
<div>
<i class="fa-solid fa-headset fa-xl"></i>
</div>
<div class="nav-links">
<ul>
<li><a class="active" href="index.html" title="Home">Home</a></li>
<li><a href="games.html" title="Party-Details">Details</a></li>
<li><a href="party.html" title="Images">Images</a></li>
</ul>
</div>
</nav>
</header>
<main>
<div class="party-page">
<h1 class="title">
<div class="level">LEVEL</div>
<div class="forty">40</div>
</h1>
<div class="party-details">
<div>Join us for some video games in celebration of Frank's 40th Birthday</div>
<div class="date-time">Friday, October 7th, 2022<br>7-10PM</div>
<div class="location">Localhost<br>401 N Broad St<br>Philadelphia, PA 19108</div>
<div>
<a class="rsvp-link" href="rsvp.html" title="RSVP">RSVP by 9/23</a>
</div>
</div>
</div>
</main>
</body>