Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
FraserEmbrey authored Nov 15, 2024
1 parent fdbd712 commit b29f9db
Show file tree
Hide file tree
Showing 2 changed files with 134 additions and 0 deletions.
60 changes: 60 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nibbles Night — 11th December</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>

<header>
<h1>Nibbles Night</h1>
<p>Join us on December 11th for a cosy evening of delightful bites and non-alcoholic cocktails.</p>
</header>

<section class="details">
<h2>Event Details</h2>
<p><strong>Date:</strong> December 11th</p>
<p><strong>Time:</strong> 5 PM</p>
<p><strong>Location:</strong> Fraser's Flat</p>
</section>

<section class="menu">
<h2>Menu</h2>
<h3>Meat</h3>
<ul>
<li>Gilda</li>
<li>Sarde in Saor</li>
<li>Prosciutto-Wrapped Asparagus</li>
<li>Chorizo & Manchego with Pickled Peppers</li>
<li>Insalata del Mare</li>
</ul>

<h3>Vegetarian</h3>
<ul>
<li>Marinated Olives with Citrus & Rosemary</li>
<li>Pizzeta</li>
<li>Crostini al Funghi</li>
<li>Tomato Bruschetta with Basil</li>
<li>Fig & Gorgonzola Crostini</li>
<li>Charred Peppers & Goat Cheese</li>
</ul>
</section>

<section class="drinks">
<h2>Non-Alcoholic Cocktails</h2>
<ul>
<li>Blood Orange & Rosemary Fizz</li>
<li>Berry Basil Lemonade</li>
<li>Pineapple Caviar</li>
<li>Warm Winter Punch</li>
</ul>
</section>

<footer>
<p>&copy; 2024 Fraser's Nibbles Night | All Rights Reserved</p>
</footer>

</body>
</html>
74 changes: 74 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Body Styling */
body {
font-family: Palatino, sans-serif;
background-color: #f7f7f7;
color: #333;
padding: 20px;
max-width: 600px;
margin: auto;
}

/* Header Styling */
header {
text-align: center;
margin-bottom: 20px;
}

header h1 {
font-size: 2em;
color: #2c3e50;
}

header p {
font-size: 1.1em;
color: #555;
}

/* Section Styling */
section {
margin-bottom: 30px;
}

h2 {
font-size: 1.5em;
color: #2c3e50;
border-bottom: 2px solid #e74c3c;
padding-bottom: 5px;
margin-bottom: 15px;
}

h3 {
font-size: 1.2em;
color: #e74c3c;
margin-top: 15px;
margin-bottom: 10px;
}

/* List Styling */
ul {
list-style-type: none;
padding-left: 10px;
}

li {
font-size: 1em;
padding: 5px 0;
color: #555;
}

/* Footer Styling */
footer {
text-align: center;
padding: 10px 0;
font-size: 0.9em;
color: #888;
border-top: 1px solid #ddd;
margin-top: 20px;
}

0 comments on commit b29f9db

Please sign in to comment.