| 
6
 | 
     1 <!DOCTYPE html>
 | 
| 
 | 
     2 <head>
 | 
| 
 | 
     3 	<style>
 | 
| 
 | 
     4 		body {
 | 
| 
 | 
     5 			text-align: center;
 | 
| 
 | 
     6 			background-image: url("capsule.jpg");
 | 
| 
 | 
     7 			background-size: 100% auto;
 | 
| 
 | 
     8 			background-position: top center;
 | 
| 
 | 
     9 			background-repeat: repeat;
 | 
| 
 | 
    10 			image-rendering: pixelated;
 | 
| 
 | 
    11 			text-shadow: -1px -1px 0px #000000, 1px 1px 0px #000000, -1px 1px 0px #000000, 1px -1px 0px #000000;
 | 
| 
 | 
    12 		}
 | 
| 
 | 
    13 		p {
 | 
| 
 | 
    14 			font-size: 20px;
 | 
| 
 | 
    15 			color: white;
 | 
| 
 | 
    16 		}
 | 
| 
 | 
    17 		h1 {
 | 
| 
 | 
    18 			font-size: 40px;
 | 
| 
 | 
    19 			color: white;
 | 
| 
 | 
    20 		}
 | 
| 
 | 
    21 		a {
 | 
| 
 | 
    22 			text-decoration: none;
 | 
| 
 | 
    23 			color: tomato;
 | 
| 
 | 
    24 		}
 | 
| 
 | 
    25 	</style>
 | 
| 
 | 
    26 </head>
 | 
| 
 | 
    27 <body>
 | 
| 
 | 
    28 	<h1>cool shit</h1>
 | 
| 
 | 
    29 	<p><a href="tomoko.html">it is a mystery</a></p>
 | 
| 
 | 
    30 	<p>more cool shit to come</p>
 | 
| 
 | 
    31 </body>
 |