-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (64 loc) · 3.1 KB
/
Copy pathindex.html
File metadata and controls
70 lines (64 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Landing-Page</title>
</head>
<body>
<div class="hero">
<div class="header">
<header>SolarDot</header>
<div class="header-links">
<a class="header-link" href="#">About Us</a>
<a class="header-link" href="#">Product Catalog</a>
<a class="header-link" href="#">Get Involved</a>
</div>
</div>
<div class="hero-content">
<div class="hero-text">
<h1 class="main-text">The Official Celestial Vendors</h1>
<p class="secondary-text">This website is an intergalactic hub for buyers and sellers of various celestial bodies. Our customer attraction works on the scale of a supermassive black hole.</p>
<button>Sign up</button>
</div>
<img class="hero-img" alt="A view of the milky way galaxy suspended in outer space"src="https://cdn.pixabay.com/photo/2011/12/14/12/17/galaxy-11098_1280.jpg">
</div>
</div>
<h1 class="information-header">Some Products We Sell</h1>
<div class="img-container">
<div class="mars">
<img alt="An image of Mars suspended in outer space" src="https://cdn.pixabay.com/photo/2011/12/13/14/30/mars-11012_1280.jpg">
<p class="img-subtext">this popular attraction is located in the Milky Way Galaxy called Mars</p>
</div>
<div class="saturn">
<img alt="An image of Saturn suspended in outer space" src="https://cdn.pixabay.com/photo/2012/11/28/10/54/saturn-67671_1280.jpg">
<p class="img-subtext">Saturn offers a spectacular location for carbon-based condos</p>
</div>
<div class="jupiter">
<img alt="An image of Jupiter suspended in outer space" src="https://cdn.pixabay.com/photo/2020/02/22/08/15/space-4869815_1280.jpg">
<p class="img-subtext">Jupiter is the eye of the storm in this solar system </p>
</div>
<div class="earth">
<img alt="An image of Earth suspended in outer space" src="https://cdn.pixabay.com/photo/2011/12/13/14/31/earth-11015_1280.jpg">
<p class="img-subtext">The most underrated product placement takes place on Earth</p>
</div>
</div>
<div class="quote-section">
<blockquote>An inspiring market model for a new universal mythos. Maybe it's just filling up space, maybe not, who knows? All I know is that it looks nice.</blockquote>
<figcaption>
— Helios, God of the Sun
</figcaption>
</div>
<figure class="call-to-action">
<div class="call-left">
<h2 class="call-to-action">Genesis: It's time!</h2>
<p class="call-to-action">Sign up for our product server by clicking the button right over there!</p>
</div>
<button class="call-to-action">Sign up</button>
</figure>
<footer>
<p>Copyright © The Odin Project 2021</p>
</footer>
</body>
</html>