-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (65 loc) · 3.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="dark-bg"><div class="limit-width">
<div class="head-logo">Header Logo</div>
<nav class="flx head-link">
<div><a href="javascript:void(0);">header link one</a></div>
<div><a href="javascript:void(0);">header link two</a></div>
<div><a href="javascript:void(0);">header link three</a></div>
</nav>
</div></header>
<section class="dark-bg hero"><div class="limit-width">
<article>
<h1>This website is awesome</h1>
<p>This website has some subtext that goes here under the main title. It's a smaller font and the color is lower contrast.</p>
<button lang="jp">くわしくを!</button>
</article>
<div class="crop"><img src="kitten-500x200.jpeg" width="500" height="200" alt="a kitten for your thoughts"></div>
</div></section>
<section class="lite-bg random"><div class="limit-width">
<h1>Some random information.</h1>
<div class="grab-bag">
<figure>
<div class="crop"><img src="kitten-120x120.jpeg" width="120" height="120" alt="the same kitten smaller"></div>
<figcaption>this is some subtext under an illustration or image</figcaption>
</figure><figure>
<div class="crop"><img src="kitten-120x120.jpeg" width="120" height="120" alt="the same kitten a third time"></div>
<figcaption>this is some subtext under an illustration or image</figcaption>
</figure><figure>
<div class="crop"><img src="kitten-120x120.jpeg" width="120" height="120" alt="the same kitten a fourth time"></div>
<figcaption>this is some subtext under an illustration or image</figcaption>
</figure><figure>
<div class="crop"><img src="kitten-120x120.jpeg" width="120" height="120" alt="the same kitten a final time"></div>
<figcaption>this is some subtext under an illustration or image</figcaption>
</figure>
</div>
</div></section>
<section class="gray-bg quote"><div class="limit-width">
<p>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.</p>
<aside class="quote-attrib">–Thor, God of Thunder</aside>
</div></section>
<section class="lite-bg cta"><div class="interact-box">
<article>
<h1>Call to action! It's time!</h1>
<p>Amuse yourself by clicking that non-functional button right over there!</p>
</article>
<button lang="jp">うわぁぁ!</button>
</div></section>
<footer class="dark-bg">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png"></a>
<a href="https://github.com/glasswings/odin-landing-page">layout</a> by glasswings
·
design by <a href="https://github.com/TheOdinProject/curriculum">TheOdinProject</a>
<br>
<a href="https://creativecommons.org/licenses/by/2.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/2.0/88x31.png"></a>
kitten by <a href="https://flickr.com/photos/fazen/">fazen</a>,
find more at <a href="https://placekitten.com/">placekitten</a>
</footer>
</body>
</html>