Created
December 18, 2014 20:02
-
-
Save metaColin/9293660cfbdb0d323b92 to your computer and use it in GitHub Desktop.
a basic html file for testing purposes
This file contains 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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Main screen turn on.</title> | |
<link rel="stylesheet" href="style.css"> | |
<style type="text/css"> | |
*{ | |
margin: 0; | |
} | |
html, body{ | |
width: 100%; | |
height: 100%; | |
position: relative; | |
background: #000; | |
} | |
img{ | |
width: 445px; | |
height: 300px; | |
display: block; | |
position: absolute; | |
left: 50%; | |
margin-left: -222px; | |
top:50%; | |
margin-top: -150px; | |
} | |
</style> | |
</head> | |
<body> | |
<img src="http://i.imgur.com/QKlrOfc.jpg" alt=""> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment