-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathsolution.html
More file actions
executable file
·55 lines (40 loc) · 1.6 KB
/
solution.html
File metadata and controls
executable file
·55 lines (40 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>level-1</title>
<link rel="stylesheet" href="../../base/base.css">
<!-- STEP 1 CSS FILE **** STEP 1 CSS FILE *** STEP 1 CSS FILE -->
<link rel="stylesheet" href="./step-1.css">
<!-- STEP 2 CSS FILE **** STEP 2 CSS FILE *** STEP 2 CSS FILE -->
<link rel="stylesheet" href="./step-2.css">
</head>
<body>
<main class="main-wrapper">
<!-- Step-1.1 -->
<section class="main-top-section">
<header class="top-header">
<!-- Step-1.2 Add some styles to make these elements line up correctly inside the header-->
<div class="menu"></div>
<div class="logo"></div>
<div class="sign-in"></div>
</header>
<!-- Step-1.3 Add a position property to this container to make it overhang off the section -->
<div class="bottom-container"></div>
</section>
<!-- Step-2.1 Add some padding and some margin to make this container look like the design -->
<section class="main-bottom-section">
<!-- Step-2.2 These containers need to be lined up side by side -->
<div class="item"></div>
<div class="item"></div>
<!-- Step-2.3 This container needs to take up the entire width of the container -->
<div class="full-width-item"></div>
<!-- Step-2.4 This container needs to take up the entire width of the container-->
<div class="large-item"></div>
<!-- This is the same as step-2.2 -->
<div class="item"></div>
<div class="item"></div>
</section>
</main>
</body>
</html>