Created
July 18, 2012 16:47
-
-
Save micahw156/3137389 to your computer and use it in GitHub Desktop.
Semantically Obtuse Markup. Yes, this is real...
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
<!-- 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>© <%=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