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
| <!DOCTYPE html>
<html>
<head>
<meta charset=UTF-8" />
<title>Une feuille de styles interne</title>
<style>
p {background-color:yellow;}
h2 {font-family:Verdana; font-size: 18px;}
footer
{
width: 100%;
height: 5%;
text-decoration: overline;
text-align: center;
position: absolute;
bottom: 0;
}
</style>
</head>
<body>
<p>
tout vat bien </>
</p>
<footer>
Posté par Simon, le
<time datetime="2012-02-02">2 février 2012</time>
</footer>
</body>
</html> |