-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
ec22221
commit 3463bef
Showing
13 changed files
with
74 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
HTML Attributes Reference : | ||
https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes | ||
|
||
CSS Selectors Reference : | ||
https://code.tutsplus.com/tutorials/the-30-css-selectors-you-must-memorize--net-16048 | ||
|
||
CSS Background properties Reference : | ||
https://www.w3schools.com/css/css3_backgrounds.asp | ||
|
||
CSS Display property Reference : | ||
https://developer.mozilla.org/en-US/docs/Web/CSS/display |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
body { | ||
margin: 0; | ||
} | ||
|
||
nav{ | ||
display: flex; | ||
position: fixed; | ||
height: 100px; | ||
width: 100%; | ||
background-color: rgb(59, 89, 152); | ||
} | ||
|
||
#logo{ | ||
margin-top: 20px; | ||
margin-left: 80px; | ||
height: 80px; | ||
width: 700px; | ||
background-image: url("webimages/facebook-logo.jpg"); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
} | ||
|
||
nav ul{ | ||
display: flex; | ||
height: 100px; | ||
width: 700px; | ||
margin-left: 300px; | ||
margin-top: 50px; | ||
} | ||
|
||
nav ul li{ | ||
margin-left: 50px; | ||
display: inline; | ||
} | ||
|
||
nav ul li a{ | ||
color: white; | ||
text-decoration: none; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html> <!-- <html lang="en-US">--> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Facebook Home Page</title> | ||
<link rel="stylesheet" type="text/css" href="index.css"> | ||
<link rel="icon" href="webimages/fb.png" sizes="16x16" type="image/png"> | ||
</head> | ||
<body> | ||
<nav> | ||
<div id="logo"></div> | ||
<div id ="ulwrapper"> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="index.html">About</a></li> | ||
<li><a href="index.html">Team</a></li> | ||
<li><a href="index.html">Gallery</a></li> | ||
<li><a href="#bottom">Contact Us</a></li> | ||
</ul> | ||
</div> | ||
</nav> | ||
<a name="bottom"></a> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.