Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added images/ContactUs.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/LegoGala.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/LegoLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Tickets.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/lego-logo-12.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
135 changes: 135 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lego Gala Event</title>
<style>
body {
background-color: black;
margin: 0;
}

html {
font-family: 'Lucida Sans';
}

h1 {
text-align: center;
color: black;
font-size: 30px;
text-decoration: underline;
margin: 0;
}

h2 {
text-align: center;
color: black;
font-size: 30px;
margin: 0;
}

h3 {
text-align: center;
color: black;
font size: 15;
margin: 0;
}

p {
margin: 0;
}

section {
display: flex;
justify-content: center;
}

article {
background-color: white;
width: 200px;
padding: 10px;
margin: 10px;
}

.centered-text {
text-align: center;
}

hr {
height: 2px;
background-color: black;
}

img {
max-width: 90%;
height: auto;
}

</style>
</head>
<body>
<section>
<article class="centered-text">
<h1 style= "margin-top: 50px;">Follow Us on</h1>
<h1>Social Media</h1>

<h3>
<br>
Twitter
<br>
Instagram
<br>
Facebook
<br>
TikTok
<br>
</h3>

<img
style= "margin-top: 20px;"
src="./images/LegoGala.jpg"
alt="Lego Gala Event"
/>

</article>

<article>
<img
style= "margin-top: 20px; margin-bottom: 20px;"
src="./images/ContactUs.jpg"
alt="Contact Us"
/>
<h1>Contact Us</h1>
<p style= "margin-top: 40px;">Phone Number:</p>
<p>1(800)LUVLEGO (588-5346)</p>
<br>
<p>EMail:</p>
<p>LegoGala@lego.com</p>
<br>
<p>Address:</p>
<p>555 Taylor Road Enfield,</p>
<p>CT 06082-1600 USA</p>
</article>

<article>
<img
src="./images/lego-logo-12.jpg"
alt="Lego Logo"
/>
<hr>
<h2>Lego Grand Galla Event</h2>
<hr>
<p><em>Join us for the annual Lego Gala event happening online on the First of Octember!!</em></p>
<br>
<p>Octember 1st, 2021</p>
<p>7pm Standard Lego Time</p>
<img
style="margin-top: 180px;"
src="./images/Tickets.jpeg"
/>
</article>
</section>
</body>
</html>