HTML Best Practices You Should Follow
Most of the web pages you encounter is presented to you via HTML, the world wide web’s markup language. In this article, I will share with you 20 best practices that will lead to clean and correct markup.
The doctype declaration should be the first thing in your HTML documents. The doctype declaration tells the browser about the XHTML standards you will be using and helps it read and render your markup correctly.
I would recommend using the XHTML 1.0 strict doctype. Some developers consider it a tough choice because this particular standard is less forgiving than loose or transitional doctype declarations, but it also ensures that your code abides strictly by the latest standards.
DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
The tag helps make a web page more meaningful and search-engine friendly. For example, the text inside the tag appears in Google’s search engine results page, as well as in the user’s web browser bar and tabs.
Take for instance, the following example:
Six Revisions - Web Development and Design Information
The example above appears like the following image in Google’s search engine results page:
Meta tags make your web page more meaningful for user agents like search engine spiders.
Description Meta Attribute
The description meta attribute describes the basic purpose of your web page (a summary of what the web page contains). For each web page, you should place a consise and relevant summary inside the meta description tag.
For example, this description:
Shows up in Google’s search engine results page as follows:
Don’t try to spam your description with repeated words and phrases because search engines are intelligent enough to detect that. Instead, just try to be simple and straightforward in explaining the purpose of your web page.
Keywords Meta Attribute
The keywords meta attribute contains a comma-separated list of key words and phrases that relate to your web page. These keywords make your web page even more meaningful.
Again, just like with the description meta attribute, avoid repetition of words and phrases; just mention a few words that aptly describes and categorizes your web page.
Consider dividing your web page into major sections as the first step in constructing a website design.
Doing so from the start promotes clean and well-indented code. It will also help you avoid confusion and excess use of divs, especially if you are writing complex and lengthy markup.
Your HTML is your content. CSS provides your content’s visual presentation. Never mix both.
Don’t use inline styles in your HTML. Always create a separate CSS file for your styles. This will help you and future developers that might work on your code make changes to the design quicker and make your content more easily digestible for user agents.
Bad Practice: Inline Styles
Below, you can see a paragraph element that is styled using the style attribute. It will work, but it’s bad practice.
A simple website usually has one main CSS file and possibly a few more for things like CSS reset and browser-specific fixes.
But each CSS file has to make an HTTP request, which slows down website load times.
A solution to this problem is to minify (take out unneeded characters such as spaces, newlines, and tabs) all your code and try to unify files that can be combined into one file. This will improve your website load times.
A problem with this approach is that you have to “unminify” (because it’s hard to read unformatted code) and then redo the minification process every time you need to update your code. So it’s better to do this at the end of your production cycle.
Online tools to minify and optimize CSS can be found on this list of CSS optimizers.
Also, always put your stylesheet reference link inside the tags because it will help your web page feel more responsive while loading.
Like CSS, never use inline JavaScript and try to minify and unify your JavaScript libraries to reduce the number of HTTP requests that need to be made in order to generate one of your web pages.
But unlike CSS, there is one really bad thing about external JavaScript files: browsers do not allow parallel downloads, which means the browser cannot download anything while it’s downloading JavaScript, resulting in making the page feel like it’s loading slowly.
So, the best strategy here is to load JavaScript last (i.e. after your CSS is loaded). To do this, place JavaScript at the bottom of your HTML document where possible. Best practice recommends doing this right before the closing tag.
Example
Learn to use
Example
For blogs, I really recommend using the
WordPress Code Example
9.Use the Right HTML Element at the Right Place
Learn about all the available HTML elements and use them correctly for a semantic and meaningful content structure.
Use for emphasis and for heavy emphasis, instead of or (which are deprecated).
Example
emphasized text
strongly emphasized text
Use
for paragraphs. Don’t use
to add a new line between paragraphs; use CSS margin and/or padding properties instead.
For a set of related elements, use:
Don’t use
for indentation purposes; use it when actually quoting text.
Sometimes developers end up wrapping
Under the latest draft of the W3C HTML specification, a
But many use it even for menial things like displaying inline elements as block elements (instead of the display:block; CSS property).
Avoid creating mountains of divs by using them sparingly and responsibly.
Navigation is a very important aspect of a website design and the
Also, by convention, an unordered list for your navigation menu has been the accepted markup.
An Example of an Unordered List
CSS to Style the Unordered List into a Horizontal Navigation Bar
#main_nav { position:absolute; right:30px; top:40px;}
#main_nav li { float:left; margin-left:2px; }
#main_nav li a{ font-size:16px; color:#fff; text-decoration:none; padding:8px 15px; -moz-border-radius:7px; -webkit-border-radius:7px; border-radius:7px;}
#main_nav li a.active,
#main_nav li a:hover{ background-color:#0b86cb; }
Output
Closing all your tags is a W3C specification. Some browsers may still render your pages correctly (under Quirks mode), but not closing your tags is invalid under standards.
Example
test
some sample text
It is an industry-standard practice to keep your markup lower-cased. Capitalizing your markup will work and will probably not affect how your web pages are rendered, but it does affect code readability.
Bad Practice
test
some sample text
Good Practice
test
some sample text
Using a meaningful alt attribute with elements is a must for writing valid and semantic code.
Bad Practice
alt="brg_logo.png" />
Good Practice
alt="Six Revisions Logo" />
15.Use Title Attributes with Links (When Needed)
Using a title attribute in your anchor elements will improve accessibility when used the right way.
It is important to understand that the title attribute should be used to increase the meaning of the anchor tag.
Bad Practice
When a screen reader reads the anchor tag, the listener has to listen to the same text twice. What’s worse is that it doesn’t explain what the page being linked to is.
If you are just repeating the anchor’s text or aren’t intending to describe the page being linked, it’s better not to use a title at all.
Good Practice
Use the
Example
Personal Details
17.Use Modular IE Fixes
You can use conditional comments to target Internet Explorer if you are having issues with your web pages.
IE 7 Example
IE 6 Example
However, try to make your fixes modular to future-proof your work such that when older versions of IE don’t need to be supported anymore, you just have to update your site in one place (i.e. take out the reference to the ie-6.css stylesheet).
By the way, for pixing PNG transparencies in IE6, I recommend the DD_belated PNG script (the JavaScript method referenced above).
18.Validate Your Code
Validation should not be the end-all evaluation of good work versus bad work. Just because your work validates doesn’t automatically mean it’s good code; and conversely, a work that doesn’t fully validate doesn’t mean it’s bad (if you don’t believe me, try auto-validating Google or Yahoo!).
But auto-validation services such as the free W3C markup validation service can be a useful debugger that helps you identify rendering errors.
While writing HTML, make a habit to validate frequently; this will save you from issues that are harder to pinpoint (or redo) once your work is completed and lengthier.
A cleanly written and well-indented code base shows your professionalism, as well as your consideration for the other people that might need to work on your code.
Write properly indented clean markup from the start; it will increase your work’s readability.
While documenting your code, the purpose is to make it easier to understand, so commenting your code logic is a good thing for programming languages like PHP, Java and C#.
But markup is very much self-explanatory and commenting every line of code does not make sense in HTML/XHTML. If you find yourself commenting your HTML a lot to explain what is going on, you should review your work for semantics and appropriate naming conventions.
tiopepi
zfilsnuhurf@gmail.com
mesh louboutin heels dwight clark 49ers jersey crosby autographed jerseylakers jersey staples centerfootball casual jacketsergachev signed jersey stone island ghost gilet jordan retro 6 all staradidas superstar white and silberjordan retro 4 iv women sky blue shoesshoes steph curry white and blue moncler shirt
tiopepi http://www.tiopepi.net/
sellergyllc
usulfzjjsun@gmail.com
fc barcelona black jersey long sleeve air jordan 4 white cement 2021 bucs shirt tom brady camp high football sweatshirt kd vii nsw lifestyle qs asics tiger mexico 66 azul
sellergyllc http://www.sellergyllc.com/
spacesmacks
actcxup@gmail.com
pittsburgh pirates mlb hats online peacocks party dresses red soled high heels and designer airmax 90 familia womens atlanta braves baseball hat 07 97 air max grey
spacesmacks http://www.spacesmacks.com/
scifiindia
hvpqolxo@gmail.com
fred perry v neck jumper salejoules minx gilet size 18paul smith white long sleeve polocheck shirt dress womens long torso wedding dressflowy long dresses for summerdressy camiwestern style prom dresses champs air max 720 screen cover for iphone 8 moncler cloakkeralle moncleraubrac monclermoncler arrious parka new white psg kitpackers gear for menseahawks uniform greennike san francisco 49ers jersey
scifiindia http://www.scifiindia.com/
quattic
wxhoabnqiu@gmail.com
bifold michael kors walletcarmen small saffiano leather belted satchelmichael kors extra small cecemichael kors burgundy crossbody bag air max 90 essential olive verde nike kd viii black and red cute clothing boutiquesdip hem dress boohoonew years dress near mebaby girl gown red bottoms open toe deshaun watson panthers jerseyfc barcelona track jacketeuro england football shirtnike training kits football
quattic http://www.quattic.com/