-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (81 loc) · 3.69 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project: LAnding Page</title>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="main">
<header class="blue">
<h1>Header Logo</h1>
<nav>
<ul>
<li>header link one</li>
<li>header link two</li>
<li>header link three</li>
</ul>
</nav>
</header>
<section>
<div class="container blue">
<div class="container11">
<h1>This website is awesome</h1>
<h5>This website has some subtext that goes here under the main title. It's a smaller font and the color is lower contrast.</h5>
<button>Sign up</button>
</div>
<div class="container12">
<img src="https://images.unsplash.com/photo-1472437774355-71ab6752b434?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D">
</div>
</div>
</section>
<section class="information">
<div class="container info">
<div class="infotitle">
<h2>Some random information.</h2>
</div>
<div class="container21">
<div class="cardcontainer">
<img src="https://images.unsplash.com/photo-1524666643752-b381eb00effb?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D">
<figcaption>this is some subtext under an illustration or image</figcaption>
</div>
<div class="cardcontainer">
<img src="https://plus.unsplash.com/premium_photo-1685086785636-2a1a0e5b591f?q=80&w=1032&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D">
<figcaption>this is some subtext under an illustration or image</figcaption>
</div>
<div class="cardcontainer">
<img src="https://images.unsplash.com/photo-1577760258779-e787a1733016?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D">
<figcaption>this is some subtext under an illustration or image</figcaption>
</div>
<div class="cardcontainer">
<img src="https://images.unsplash.com/photo-1589149098258-3e9102cd63d3?q=80&w=1039&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D">
<figcaption>this is some subtext under an illustration or image</figcaption>
</div>
</div>
</div>
</section>
<section style="background: #e5e7eb;">
<div class="container quote">
<p id="quote"><em>This is an inspiring quote, or a testimonial from a customer.
Maybe it's just filling up space, or maybe people will actually read it. Who knows?
All i know is that it looks nice.</em>
</p>
<p class="signature">-Thor, God of Thunder</p>
</div>
</section>
<section style="background: white;">
<div class="container3">
<div class="call">
<div id="call">
<h1>Call to action! It's time!</h1>
<p>Sign up for our product by clicking that button right over there!</p>
</div>
<button>Sign up</button>
</div>
<footer>Copyright c The Odin Project 2021</footer>
</div>
</section>
</div>
</body>
</html>