-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (74 loc) · 3.48 KB
/
index.html
File metadata and controls
76 lines (74 loc) · 3.48 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
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="top">
<div class="header">
<div class="logo">
Header Logo
</div>
<div class="links">
<li>
<ul><a href="https://github.com/TacoTime92" target="_blank" rel="noopener noreferrer">header link one</a></ul>
<ul><a href="https://github.com/TacoTime92/Landing-Page" target="_blank" rel="noopener noreferrer">header link two</a></ul>
<ul><a href="https://pdx.eater.com/" target="_blank" rel="noopener noreferrer">header link three</a></ul>
</li>
</div>
</div>
<div class="info">
<div class="text">
<h1>This Website Is Awesome</h1>
<p>This website has some subject that goes here under the main title. It's a smaller font and the color is lower contrast.</p>
<button> Sign Up</button>
</div>
<div class="image">
<img src="https://cdn.pixabay.com/photo/2024/01/25/23/06/iceberg-8532935_1280.jpg" alt="Snowy Lake" height="310" width="500">
</div>
</div>
</div>
<div class="Information">
<div class="Info-Header">
Some Random Information
</div>
<div class="Substance">
<div class="stack">
<img src="https://cdn.pixabay.com/photo/2022/10/31/20/20/skeleton-7560707_1280.png" alt="A Skull" height="150" width="150">
<p>This is how you feel when you are struggling with flexbox and before you start this assignment.</p>
</div>
<div class="stack">
<img src="https://cdn.pixabay.com/photo/2022/06/30/12/47/light-bulb-7293627_1280.png" alt="A Lightbulb" width="150" height="150">
<p>This is what happens when you have a bright idea and the website you are designing suddenly clicks.</p>
</div>
<div class="stack">
<img src="https://cdn.pixabay.com/photo/2022/06/22/12/17/emoji-7277841_1280.png" alt="Smiley face with Shades" height="150" width="150">
<p>How you feel after stressing over this project but complete it feeling so good.</p>
</div>
<div class="stack">
<img src="https://cdn.pixabay.com/photo/2022/08/07/14/06/beer-7370681_1280.png" alt="Mug of beer" width="150" height="150">
<p>This is a mug of beer, something that may be needed after a long week of work.</p>
</div>
</div>
</div>
<div class="gray">
<div class="quote">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.</div>
<div class="author">-Thor, God of Thunder</div>
</div>
<div class="last">
<div class="box">
<div class="left">
<div class="action">Call to action! It's time!</div>
<div class="subtext">Sign up for our product by clicking that button right over there!</div>
</div>
<button>Sign Up</button>
</div>
</div>
<div class="footer">
<div>Copyright © The Odin Project 2024</div>
</div>
</body>
</html>