-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
129 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,122 @@ | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title> | ||
Landing Page | ||
</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
|
||
|
||
|
||
<!--separation--> | ||
|
||
|
||
|
||
<header class="one"> | ||
<h2>Header Logo</h1> | ||
<ul> | ||
<li><a href="#">header link one</a></li> | ||
<li><a href="#">header link two</a></li> | ||
<li><a href="#">header link three</a></li> | ||
</ul> | ||
</header> | ||
|
||
|
||
|
||
<!--separation--> | ||
|
||
|
||
|
||
<section class="one"> | ||
<h2>This Website is awesome</h2> | ||
<p> | ||
This website has some subtext that goes header | ||
under the main title. It's a smaller font and | ||
the color is lower contrast. | ||
</p> | ||
|
||
<img src="#" alt="this is a placeholder for an image"> | ||
</section> | ||
|
||
|
||
|
||
<!--separation--> | ||
|
||
|
||
|
||
<section class="two"> | ||
<h2>Some Random information</h2> | ||
<div class="container" alt=""> | ||
<img src="#"> | ||
<div>this is some subtext under an illustration | ||
or image | ||
</div> | ||
|
||
<img src="#"> | ||
<div>this is some subtext under an illustration | ||
or image | ||
</div> | ||
|
||
<img src="#"> | ||
<div>this is some subtext under an illustration | ||
or image | ||
</div> | ||
|
||
<img src="#"> | ||
<div>this is some subtext under an illustration | ||
or image | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
|
||
<!--separation--> | ||
|
||
<section class="three"> | ||
<p> | ||
This is an inspiring quote, or a testimonial | ||
from a customer. Maybe it's just filling up space, | ||
or maybe people wil actually read it. Who knows? | ||
All I know is that it looks nice. | ||
</p> | ||
<cite> | ||
-Thor, God of Thunder | ||
</cite> | ||
</section> | ||
|
||
|
||
|
||
|
||
|
||
<!--separation--> | ||
|
||
|
||
|
||
<section class="four"> | ||
<div> | ||
<p> | ||
<h4> | ||
Call to action! It's time! | ||
</h4> | ||
Sign up for our product by clicking that | ||
button right over there! | ||
</p> | ||
<button>Sign up</button> | ||
</div> | ||
</section> | ||
|
||
|
||
|
||
|
||
<!--separation--> | ||
|
||
|
||
|
||
<footer class="one"> | ||
<div> Copyright (c) The Odin Project 2023 | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
|
||
.one { | ||
background-color: #1f2937; | ||
} | ||
|
||
.three { | ||
background-color: #e5e7eb; | ||
} |