-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
145 lines (119 loc) · 4.49 KB
/
index.html
File metadata and controls
145 lines (119 loc) · 4.49 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
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Spin-off of "Project: Event invite" - Elena</title>
<style>
body{
background:url(https://upload.wikimedia.org/wikipedia/commons/thumb/3/30/Water_Blue.jpg/640px-Water_Blue.jpg);
background-size:cover;
background-position:center;
background-repeat:no-repeat;
font-family:"comic sans MC",cursive;
color:pink;
text-align:center;
}
#flamingos{
width:440px;
height:150px;
position:absolute;
top:200px;
left:10px;
border:3px ridge white;
z-index:0;
}
#exotic{
width:100px;
position:absolute;
top:280px;
left:340px;
border:3px ridge white;
z-index:3;
}
#girls{
width:250px;
position:absolute;
top:300px;
left:30px;
border:3px ridge white;
z-index:1;
}
#party{
width:200px;
position:absolute;
top:380px;
left:200px;
border:3px ridge white;
z-index:2;
}
.photos{
position:relative;
width:100%;
height:130px;
top:1px;
left:1px;
margin:0 auto;
z-index:10;
}
.join{
font-weight:bold;
color:rgb(143, 25, 227);
position:relative;
margin-top:520px;
z-index:1;
}
.expect{
color:white;
text-align:left;
}
.bring{
color:white;
text-align:left;
}
.tolerance{
color:rgb(209, 242, 46);
background-color:rgb(199, 76, 199);
padding:1px;
}
h1{
text-decoration:underline;
}
</style>
</head>
<body>
<h1>POOL PARTY!</h1>
<h2>This Saturday in our swimming pool!</h2>
<h2>To celebrate the last sunny days!</h2>
<div class="photos">
<img id="flamingos" src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Upload_-_Flickr_-_flashcurd_%281%29.jpg/640px-Upload_-_Flickr_-_flashcurd_%281%29.jpg" alt="inflatable flamingos in a pool">
<img id="exotic" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/ce/Inappropriate_Cocktail_Decoration.jpg/640px-Inappropriate_Cocktail_Decoration.jpg" alt="exotic cocktail with heavy decoration" width="200px">
<img id="girls" src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/2019.06.06_Capital_Pride_Rooftop_Rally%2C_Washington%2C_DC_USA_2076_%2848018726068%29.jpg/640px-2019.06.06_Capital_Pride_Rooftop_Rally%2C_Washington%2C_DC_USA_2076_%2848018726068%29.jpg" alt="two girls on two inflatable unicorns in a pool" width="250px">
<img id="party" class="photos" src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Chiang_Mai%2C_Thailand%2C_Party%2C_People_dancing.jpg/640px-Chiang_Mai%2C_Thailand%2C_Party%2C_People_dancing.jpg" alt="people dancing at a party" width="250px">
</div>
<div class="join">
<p>Join our party on the poolside and even in the pool if you feel like it!</p>
</div>
<div class="expect">
<p>What to expect:</p>
<ul>
<li>Great music from our DJs</li>
<li>Free flowing cocktails</li>
<li>Water games</li>
</ul>
</div>
<div class="bring">
<p>What to bring:</p>
<ul>
<li>Your great mood!</li>
<li>Your friends</li>
</ul>
</div>
<div class="tolerance">
<p>We have 0 tolerance to:<br>
Any form of discrimination, racism, harassment<br>
Any form of aggresivity<br>
Substance abuse<br>
</p>
</div>
</body>
</html>