-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbox.html
41 lines (41 loc) · 1.28 KB
/
box.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
39
40
41
<!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>The Holy Grail Layout</title>
<link rel="stylesheet" href="css/box.css">
<script src="https://kit.fontawesome.com/b182c44c0a.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="wrapper">
<main>
<ul>
<li>Action Figures</li>
<li>Building Toys</li>
<li>Board Games</li>
<li>Electronic Toys</li>
<li>Dolls & Plush Toys</li>
</ul>
<div class="flex">
<div class="info">
<h2>Our Toys</h2>
<p class="name">Ben Carpenter</p>
<p class="title">Toy Designer</p>
<a href="#">Explore</a>
</div>
<div class="toys"></div>
</div>
</main>
<section>
<button class="btn-light">Log in</button>
<div class="card">
<h1>A Universe of Whimsical Wonders for Kids of All Ages</h1>
<p>Where Imagination Takes Flight and Playtime Knows No Limits!</p>
<button class="btn-dark">View More</button>
</div>
</section>
</div>
</body>
</html>