-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout-elements.html
More file actions
74 lines (74 loc) · 3.34 KB
/
layout-elements.html
File metadata and controls
74 lines (74 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Layout Elements Exercise</title>
<link rel="stylesheet" href="CSS/resets.css"/>
<link rel="stylesheet" href="CSS/layout.css"/>
<link rel="stylesheet" href="CSS/layout-elements-exercise.css"/>
</head>
<body>
<div class="page-wrapper">
<header class="container justify-center">
<div class="row justify-space-between align-center">
<div class="column shrink justify-center">
<img src="images/example-logo.svg" class="logo-img" alt="Logo"/>
</div>
<div class="column justify-end align-center direction-row">
<button class="home-button">Home</button>
<button class="overview-button">Overview</button>
<button class="features-button">Features</button>
<button class="signup-button">Sign Up</button>
</div>
</div>
</header>
<section class="container hero-scene justify-center">
<div class="row">
<div class="column align-center justify-center">
<h5 class="hero-header">An Exercise in Web Layouts</h5>
<h1 class="hero-second-header">We are all masters of the frontend.</h1>
<p class="hero-text">Home is behind, the world ahead and there are many paths to tread
through shadow to the.</p>
</div>
<div class="column">
<img src="images/AAAAAA.webp">
</div>
</div>
</section>
<section class="features-header">
<div class="row no-padding full-width justify-center align-center">
<div class="column justify-center text-center">
<h1>Features</h1>
<p class="features-description">Home is behind, the world ahead and there are many path to tread
through shadows to the edge, world ahead and there are.</p>
</div>
</div>
</section>
<section class="container features">
<div class="row no-padding">
<div class="column justify-center text-center">
<img src="images/camera-icon-white-2.jpg" class="feature-img" alt="camera icon">
<h3>Feature Title</h3>
<p>It's dangerous business, Frodo, going out your front door. You step onto the road.</p>
</div>
<div class="column justify-center text-center">
<img src="images/camera-icon-white-2.jpg" class="feature-img" alt="camera icon">
<h3>Feature Title</h3>
<p>Three Rings for the Elven-Kings under the sky, Seven for the Dwarf-lords in halls of stone</p>
</div>
<div class="column justify-center text-center">
<img src="images/camera-icon-white-2.jpg" class="feature-img" alt="camera icon">
<h3>Feature Title</h3>
<p>Nine for Mortal Men doomed to die, One for the Dark-lord on his dark throne in the land of Mordor</p>
</div>
<div class="column justify-center text-center">
<img src="images/camera-icon-white-2.jpg" class="feature-img" alt="camera icon">
<h3>Feature Title</h3>
<p>Where the shadows lie. One Ring to rule them all, One Ring to find them, One Ring to bring them all
</p>
</div>
</div>
</section>
</div>
</body>
</html>