-
Notifications
You must be signed in to change notification settings - Fork 41
HTML Styleguide
Most of this styleguide was lifted from Rackspace's open source framework, EncoreUI. Most of these standards are based off of the guidelines provided by Google, and current developer preferences. Reading up on these materials will give you a much greater understanding of why these rules were chosen.
The framework is indenting by two spaces at a time. Please do not use tabs or mix tabs and spaces when indenting.
<ul>
<li>List Item...</li>
</ul>
This is an example of using the proper indentation with nested elements. Each child element is nested and indented two spaces from its parent element.
<ul>
<li>List Item
<ul>
<li>Nested UL List Item</li>
</ul>
</li>
</ul>
The maximum line length for HTML files should be 120 characters. Review line lengths during coding of HTML files, and break to a new line if it exceeds 120 characters. Hyperlinks are an exception to this rule. Hyperlinks can exceed the 120 character limit and must not be broken or separated.
Beta Baseline and Testing
- How to request a feature
- How to create a spike
- How to report a bug
- How to request a design story
- How to create a milestone
- Developer Setup
- Guidelines for Submitting a Pull Request
- HTML Styleguide
- CSS Styleguide
- Javascript Styleguide
- Python Styleguide
- Testing Guide
Project Architecture