Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/sky-background-3890.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
body{
background-color: gray;
}
img{
display: block;
width: 800px;
height: 200px;
}
#Content{
width: 800px;
height: 525px;
margin: 0 auto;
}
#header{

}
#menu{
text-align: center;
background-color: rgb(223, 188, 145);
width: 800px;
height: 50px;
margin: -20px 0 0 0;
}
#body{
text-align: center;
background-color: white;
width: 800px;
height: 300px;
}
#footer{
padding: 5px 0 0 0;
text-align: center;
background-color: rgb(80, 80, 80);
width: 800px;
height: 25px;
}
li{
display: inline-block;
margin: 30px 20px 0 0;
list-style: none;
}
center{
padding: 10px 0 0 0;
font-size: 40px;
font-weight: bold;
}
p{
font-size: 20px;
padding: 0 80px 0 80px;
}
button{
padding: 10px;
background-color: rgb(173, 173, 173);
color:white;
border: 0;
}
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="Content">
<div id="header">
<img src="assets/sky-background-3890.jpeg" />
</div>
<div id="menu">
<ul>
<li>HOME</li>
<li>STORY</li>
<li>PORM</li>
<li>ABOUT</li>
</ul>
</div>
<div id="body">
<center>Life on The Road</center>
<p>W3Schools is optimized for learning, testing, and training. Examples might be simplified to improve reading and basic understanding. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using this site, you agree to have read and accepted our terms of use, cookie and privacy policy.
Copyright 1999-2017 by Refsnes Data. All Rights Reserved.
</p>
<button>READ MORE</button>
</div>
<div id="footer">
<b>Copyright © 2016 ALi all rights reserved</b>
</div>
</div>

</body>
</html>