30 lines
515 B
HTML
30 lines
515 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Iceman</title>
|
||
|
<style>
|
||
|
html {
|
||
|
background: black url(iceman.jpg) no-repeat;
|
||
|
background-size: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
text-align: center;
|
||
|
font-size: 5em;
|
||
|
|
||
|
color: white;
|
||
|
|
||
|
text-shadow:
|
||
|
-1px -1px 0 #000,
|
||
|
1px -1px 0 #000,
|
||
|
-1px 1px 0 #000,
|
||
|
1px 1px 0 #000;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
You can be my wingman any time.
|
||
|
</body>
|
||
|
</html>
|