Skip to content

Instantly share code, notes, and snippets.

@parterburn
Last active August 29, 2015 14:11
Show Gist options
  • Save parterburn/a8869277263c9bc4fcd4 to your computer and use it in GitHub Desktop.
Save parterburn/a8869277263c9bc4fcd4 to your computer and use it in GitHub Desktop.
HTML Tags Allowed in Brandfolder
Some basic HTML commands include:
Text Style:
<b>This text would be bold</b>
<i>This text would be italic</i>
Headings:
<h4>This heading would be large</h4>
<h3>This heading would be larger</h3>
Links:
<a href="http://google.com">Google</a>
<a href="mailto:press@company.com">Email Us</a>
Lists - unordered (bullet points):
<ul>
<li>List item 1</li>
<li>List item 2</li>
</ul>
Lists - ordered (1,2,3..):
<ol>
<li>List item 1</li>
<li>List item 2</li>
</ol>
We also recommend simply using characters to manipulate style for descriptions & usage guidelines making it easier for the brand consumer to read, such as all-caps for headlines and asterisks for lists:
Use our logo like this:
* List item 1
* List item 2
Don't use our logo like this:
* List item 1
* List item 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment