-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (72 loc) · 2.55 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
<!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>Product Landing Page</title>
</head>
<body>
<div class="top">
<div class="header">
<div class=logo>Header Logo</div>
<div class="links">
<ul>
<li class="hlink">header link one</li>
<li class="hlink">header link two</li>
<li class="hlink">header link three</li>
</ul>
</div>
</div>
<div class="bottom">
<div class="one">
<h1 class="main-text">This website is<br> awesome</h1>
<p class="sub-text">This website has some subtext that goes under the<br> main title. Its a smaller fomt and color is lower<br> contrast</p>
<button type="button" class="button-one">
Sign up
</button>
</div>
<div class="first-image">
<img src="images/cliff.jpg" alt="women of cliff" class="main-img"/>
</div>
</div>
</div>
<div class="two">
<h3 class="head-info" >Some random information.</h3>
<div class="second-img">
<div class="imgsub">
<img src="./images/facebook.jpg" alt="" height="200" width="200">
<p>this is some subtext</p>
</div>
<div class="imgsub">
<img src="./images/gin.jpg" alt="" height="200" width="200">
<p>this is some subtext</p>
</div>
<div class="imgsub">
<img src="./images/spiral.jpg" alt="" height="200" width="200">
<p>this is some subtext</p>
</div>
<div class="imgsub">
<img src="./images/temple.jpg" alt="" height="200" width="200">
<p>this is some subtext</p>
</div>
</div>
</div>
<div class="three">
<q>This is an inspring quote or a testimonial from<br> a customer maybe it's just filling up space or maybe<br> people will actually read it. Who knows? All I know<br> is that it looks nice.</q>
<p>-Thor, God of Thunder</p>
</div>
<div class="four">
<div class="card">
<div class="text">
<h4>Call to action! It's time!</h4>
<p>Sign up for out product by clicking that button right over there!</p>
</div>
<button type="button">Sign up</button>
</div>
</div>
<footer>
<p>Copyright © The Odin Project 2023</p>
</footer>
</body>
</html>