-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (58 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<title>My 90s Style Birthday Party</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1 class="blink">My 90s Style Birthday Party</h1>
</header>
<nav>
<ul>
<li class="nav"><a href="#about">About</a></li>
<li class="nav"><a href="#schedule">Schedule</a></li>
<li class="nav"><a href="#location">Location</a></li>
<li class="nav"><a href="#rsvp">RSVP</a></li>
</ul>
</nav>
<main>
<section id="about">
<h2>About</h2>
<p>Come celebrate my birthday with me in true 90s style! There will be plenty of pizza, soda, and games to keep everyone entertained.</p>
</section>
<section id="schedule">
<h2>Schedule</h2>
<ul>
<li>6:00 PM - Arrive and socialize</li>
<li>7:00 PM - Pizza and soda</li>
<li>8:00 PM - Games and activities</li>
<li>10:00 PM - Cake and presents</li>
</ul>
</section>
<section id="location">
<h2>Location</h2>
<p>The party will be held at my house. Address: 1234 90s Street.</p>
</section>
<section id="rsvp">
<h2>RSVP</h2>
<form action="https://docs.google.com/forms/d/e/1FAIpQLSctTJuIJcUC3k5W638FsSxdkqpiZ6qd_bQLoyL1syoHRIvs_A/formResponse" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="entry.162677793" required>
<label>Can you make it:</label>
<select name="entry.382111586" required>
<option value="Yes!">Yes!</option>
<option value="Maybe!">Maybe?</option>
<option value="Sorry no, but nice website">No. sweet website tho. </option>
</select>
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<marquee behavior="scroll" direction="left">this website was coded by chatgpt</marquee>
</footer>
</div>
</body>
</html>