SEO
(Search Engine Optimization)
What is SEO?
- Search engine optimization (SEO) is the process of improving the quality and quantity of website traffic to a website or a web page from search engines
- But Guys, We Will be Focus on Html Standpoint of SEO. We not be looking into keyword building and content optimization aspect of SEO.
Types of SEO:-
- On Page SEO Ã Can be done by HTML Developers
- Off Page SEO
HTML SEO :-
- Html SEO developers can be implement SEO using the following techniques:
- If are a blog then follow this step for you.
- 1. Set the title very nice and to the point
- 2. Set the meta description :-
<meta name="description" content="Seo is like this is a nice article on seo">
- 3. Set a nice URL Slug
- 4. Set a Meta Keywords
- 5. Set the Meta Authors tag
<meta name="keywords" content="seo, search, seo 2021">
- 6. Set a favicon incon (websites in available on google)
Ans:- <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
- 7. Compress image & others resource
- Remove unused HTML/CSS & JS Files + Compress then (websites in available on google)
- 9. Add alt test to image (websites in available on google)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Seo is like this is a nice article on seo">
<meta name="keywords" content="seo, search, seo 2021">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>SEO in 2022: A beginners guide</title>
</head>
<body>
<header>
<nav>
<ul>
<li>Home</li>
<li>About</li>
<li>Contact Us</li>
</ul>
</nav>
</header>
<main>
<section>
<div>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Maiores quo obcaecati delectus,voluptatibus laudantium tempora consequatur.
Aspernatur magnam, quam sapiente illum, quivoluptatem
tempore totam aut numquam aperiam explicabo ab ex magni iusto sit?
</p>
</div>
</section>
</main>
</body>
</html>
</body>
</html>
Comments