Created
June 22, 2016 09:16
-
-
Save floz/abdc342720cd9780f19f0b36de123c07 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>accueil</title> | |
<link href="style.css" rel="nofollow" type="text/css"> | |
<style type="text/css"> | |
#container { | |
position: relative; | |
margin: 0 auto; | |
width: 1024px; | |
height: 968px; | |
background-color: #fffff; | |
} | |
#entete { | |
position: absolute; | |
left: 10px; | |
top: 20px; | |
width: 1000px; | |
height: 100px; | |
background-color: #fffff; | |
} | |
#navigation { | |
position: absolute; | |
left: 10px; | |
top: 120px; | |
width: 1000px; | |
height: 70px; | |
background-color: #fffff; | |
} | |
#contenu { | |
position: absolute; | |
left: 10px; | |
top: 190px; | |
width: 1000px; | |
height: 501px; | |
background-color: #fffff; | |
} | |
#basdepage { | |
position: absolute; | |
left: 10px; | |
top: 694px; | |
width: 1000px; | |
height: 70px; | |
background-color: #fffff; | |
} | |
h1 { | |
color: #000000; | |
font-family:"Univers LT Std 65 Bold"; | |
} | |
body { | |
color: #4A4A4A; | |
font-family:"Univers LT Std 45 Light"; | |
} | |
h2 { | |
color: #000000; | |
font-family:"Univers LT Std 65 Bold"; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container" id="container"> | |
<div id="entete"> | |
</div> | |
<div id="navigation"> Navigation</div> | |
<div id="contenu"> | |
<h1> blablabla</h1> | |
<h2> blabla </h2> | |
<p> blablablabla </p> | |
</div> | |
<div id="basdepage">Bas de page</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment