forked from DysfunctionalCoders/week-1-Homework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (119 loc) · 3 KB
/
index.html
File metadata and controls
135 lines (119 loc) · 3 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
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>