Last active
August 29, 2015 14:00
-
-
Save chrisdpeters/a3e58b67be539f33fb2d to your computer and use it in GitHub Desktop.
Web Content Guidelines - http://www.liveeditorcms.com/gc/playbook/web-content-guidelines/
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
<abbr title="Hypertext Markup Language">HTML</abbr> isn't so hard to learn after all, is it? |
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
<img src="/images/logo.png" alt="Logo"> |
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
<a href="mailto:someone@example.com">Email me</a> |
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
<img src="/images/logo.png" alt="XYZ Corporation"> |
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
<blockquote> | |
Less isn't more; just enough is more. | |
<cite>Milton Glaser</cite> | |
</blockquote> |
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
<p> | |
Here is a basic <abbr title="Hypertext Markup Language">HTML</abbr> document: | |
</p> | |
<pre> | |
<!DOCTYPE html> | |
<html class="no-js" lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>An HTML Page</title> | |
</head> | |
<body> | |
<h1>A Heading With Some &quot;Quotes&"</h1> | |
</body> | |
</html> | |
</pre> |
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
<a href="mailto:someone@example.com">someone@example.com</a> |
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
<h1>The Visible Title of Your Page</h1> | |
<p class="lead"> | |
A summary of the page perhaps would go here. Whatever, really. | |
</p> | |
<h2>A 2nd-level subheading</h2> | |
<p> | |
Some content and media or whatever. | |
</p> | |
<h3>A sub-subheading</h3> | |
<p> | |
This section appears under the 2nd level. | |
</p> | |
<h4>A sub-sub-subheading</h4> | |
<p> | |
I hope you're getting the point now. | |
</p> | |
<h2>We're back at the 2nd level</h2> | |
<p> | |
And this could have its own subsections as well... | |
</p> |
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
Inline statements should be marked up with the <code><code></code> tag. |
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
<p> | |
These are my top 3 tips for authoring HTML emails: | |
</p> | |
<ol> | |
<li>Use Litmus to test across email clients</li> | |
<li>Start with Outlook, Outlook.com, and Hotmail</li> | |
<li>Pray</li> | |
</ol> |
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
<p> | |
You should consider doing these things on your first date: | |
</p> | |
<ul> | |
<li>Eat marshmallows</li> | |
<li>Teach the importance of tying your shoes <em>the right way</em></li> | |
<li>Discuss the finer points of lawnmower ownership</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment