Skip to content

Instantly share code, notes, and snippets.

@metaColin
Created December 18, 2014 20:02
Show Gist options
  • Save metaColin/9293660cfbdb0d323b92 to your computer and use it in GitHub Desktop.
Save metaColin/9293660cfbdb0d323b92 to your computer and use it in GitHub Desktop.
a basic html file for testing purposes
<!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