-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>SheCodes Plus</title>
<meta charset="UTF-8" />
<link href="src/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<img src="images/logo.png" alt="She Codes Plus Logo" class="logo" />
<h1>CSS Positioning</h1>
<img src="images/positioning.png" alt="" class="img-positioning" />
<h3>Challenge 1</h3>
<p>Move this menu to fixed positioning, on the right side at the very top of the page</p>
<ul class="cities">
<li>Paris</li>
<li>Lisbon</li>
<li>Sydney</li>
</ul>
<h3>Challenge 2</h3>
<p>
Move the emojis on top of each other using relative positioning
<div class="emojis">
<span class="first">1️⃣</span>
<span class="second">2️⃣</span>
<span class="third">3️⃣</span>
</div>
</p>
<h3>Challenge 3</h3>
<p>
Move the SheCodes Plus (top of the page) logo to absolute position, top, far left <br />
</p>
<script src="src/index.js"></script>
</body>
</html>