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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <title>Untitled Document</title> | |
| <link href="style.css" rel="stylesheet" type="text/css" /> | |
| </head> | |
| <body> | |
| <div id="container"> | |
| <div class="quote" id="quote1"> |
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
| /** | |
| * Luc made me do it :-) */ | |
| body{ | |
| background: #f06; | |
| background: linear-gradient(45deg, #FFF, lightblue); | |
| min-height:100%; | |
| } | |
| body div{ | |
| width:900px; | |
| margin:100px auto;} |
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
| /* img with custom title */ | |
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
| /** | |
| * Very simple css3 polaroid styling | |
| */ | |
| body{ | |
| background: #f06; | |
| background: linear-gradient(45deg, orange, yellow); | |
| min-height:100%; | |
| } | |
| div#container{ | |
| width:900px; |
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
| /** | |
| * Very simple css3 polaroid styling | |
| */ | |
| body{ | |
| background: #f06; | |
| background: linear-gradient(45deg, orange, yellow); | |
| min-height:100%; | |
| } | |
| #photo{ | |
| width:200px; |