Skip to content

Instantly share code, notes, and snippets.

@micahw156
Created July 18, 2012 16:47
Show Gist options
  • Save micahw156/3137389 to your computer and use it in GitHub Desktop.
Save micahw156/3137389 to your computer and use it in GitHub Desktop.
Semantically Obtuse Markup. Yes, this is real...
<!-- using this css -->
<style type="text/css">
#footer ul {
list-style: none;
text-align: center;
}
#footer li {
display: inline;
font-size: 85%;
padding: 15px 10px 15px 0;
color: gray; /* addition 7/15/10 kb */
}
</style>
<!-- page contains this content -->
<div id="footer">
<ul>
<li>&copy; <%=year(date())%> Organization Name</li>
<li> | </li>
<li>Street Address, City, State Zip</li>
<li> | </li>
<li>Phone Number</li>
</ul>
</div>
<!-- name and address redacted to protect the guilty -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment