visit
In this article, I am going to talk about best practices of enhancing Search Engines Optimisation(SEO) in HTML pages as a "BRIDGE" from being novice to expert.
1. <title>
In the <head> tag, you should have <title> because it helps to determine the subject of a particular page.<title>How to prepare italian sausage</title>
2. <meta name="description">
Meta description is used to determine a description of the web page<meta name="description" content="Know how to cook sausages? So they're not weird and maybe raw in the middle? No? This two-step, simmer-then-sear method is for you.">
There is a couple of meta tags you should have in the <head> tag such as Canonical tag, robots tag, open graph tags, etc.3. Header tags(h1 to h6)
Header tags are very important in the structure of web content. They are not mandatory when designing web pages and it is okay. But, If you consider to avoid discouraging search engine's bot to crawl your website, you will need to have them. These tags play a vital role in the classification of the content in an efficient way. The order of your header tags reveals the level of value and dominance of content in sections.<h1></h1>: This is reserved for the title of the web page. Usually it should be only "one" on the entire web page
<h2></h2>: H2 highlights the topic of the title.
<h3></h3>: H3 reflects points in regards to the topic and should support sub contents of h2.
<h4></h4>: H4 supports sub contents of <h3>.
<h5></h5>: H5 is not often used and supports sub contents of <h4>.
<h6></h6>: H6 is not often used too and supports sub contents of <h5>.
4. The "alt" attribute in images
One of the most effective ways of engaging the audience is to use images in the web pages. According to Medium.com, when a persons is reading an article, he spends much time viewing images than just reading text. Therefore, it shows how audience is highly interested in viewing photos. However, adding images in your article won't be easy for bots. It is very difficult for search engine's crawlers to determine which type of content in the image with just loading it. "Alt" attribute tells search engines the picture is for a given topic.Without the "ALT" attribute, search engines would not know what the image is about. Therefore, this could reduce indexing the images in search engine results.<img src="./path/image.jpg" alt="Italian sausage recipe">