layout of a seo friendly web site by harsh mishra
Semantic HTML or semantic markup is HTML that introduces meaning to the web page rather than just presentation. For example, a <p> tag indicates that the enclosed text is a paragraph. ... They define only how the text should look (bold or italic), and don't provide any additional meaning to the markup.
The <article> tag specifies independent, self-contained content. An article should make sense on its own and it should be possible to distribute it independently from the rest of the site.
<!-- layout of a seo friendly website -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=eh, initial-scale=1.0">
<title>should be seo friendly </title>
</head>
<body>
<header></header>
<main>
<section></section>
<section></section>
<aside>
<div>
</div>
</aside>
</main>
</body>
</html>
Comments
Post a Comment