Skip to content

Instantly share code, notes, and snippets.

@mattymil
Created January 1, 2014 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattymil/8208794 to your computer and use it in GitHub Desktop.
Save mattymil/8208794 to your computer and use it in GitHub Desktop.
Center image and text for landing page
<html>
<head>
<link rel="stylesheet" type="text/css" href="feety.css.scss">
</head>
<body>
<table id="wrapper">
<tr>
<td><img src="/assets/feety.jpg" alt="" /><h1><%= link_to "go", welcome_index_path%></h1></td>
</tr>
</table>
</body>
</html>
html, body, #wrapper {
height:100%;
width: 100%;
margin: 0;
padding: 0;
border: 0;
background-color: black;
color: white;
font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}
a {
text-decoration: none;
}
#wrapper td {
vertical-align: middle;
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment