When writing for the web, blog posts, or articles, it is essential to apply style and formatting to the text. That’s why we present some HTML tags to make this task easier and improve SEO positioning. This will increase the visibility of your content and, therefore, the chances of attracting new potential customers.
abbr
Example
<abbr title="International Organization for Standardization">ISO</abbr>
ISO
This tag defines an abbreviation or acronym. The browser will display a tooltip when users hover over it to see the full term.
address
Example
<address> John Smith<br> <a href="mailto:[email protected]">[email protected]</a><br> 107 Springtime Boulevard<br> Mountain View, CA<br> +256 4481-546585 </address>
John Smith
107 Springtime Boulevard
Mountain View, CA
+256 4481-546585
This tag helps define the contact information for the document or its authors.
blockquote
Example
<blockquote cite="http://jerrejerre.com"> Quoted text being referenced </blockquote>
Quoted text being referenced
This is one of the most used tags for creating block quotes. It can also reference other articles or sections within the same text.
cite
Example
<p><cite cite="http://jerrejerre.com"> Quoted source being referenced </cite></p>
Don Quixote
This example shows a tag used to reference a work, such as Cervantes’ "Don Quixote". It enriches content by allowing proper citation of sources.
code
Example
<p><code> source code to be displayed </code></p>
Source code to be displayed
This tag is used to represent fragments of computer or programming code.
sup
Example
<p>E=mc<sup>2</sup></p>
E=mc2
One of the most commonly used tags to represent superscript in written text.
time
Example
<p>The final publication date is <time>06-02-2021</time></p>
The final publication date is 06-02-2021
A very useful tag for representing dates and times in written content.
var
Example
<p><var>E</var>=<var>m</var><var>c</var><sup>2</sup></p>
E=mc2
Represents a variable in a mathematical formula or programming code.
wbr
Example
<p>We should have a line break<wbr> when necessary</p>
We should have a line break when necessary.
The "wbr" tag offers a suggestion to the browser to insert a line break at a certain point in the text.
Remember you can contact us; we are ready to provide the best advice to improve your texts and content.
Meta description: Discover basic HTML codes to format your site and improve SEO performance.