+ 4
What is the structure of html?
5 Réponses
+ 18
<html>
<head>
<!--Non visual tags-->
</head>
<body>
<!--visual tags-->
</body>
</html>
+ 16
@umut meta usually in head tag
@umut h1, h2,...,h6 usually in body
@Álvaro Im srry, thx youve remind me
+ 12
<!Doctype html>
<html>
<head>
<title>
</title>
</head>
<body>
</body>
</html>
and you can check code playground that sololearn offers for you and you will see this main structure of html and you can write your codes more easily.
+ 5
[CORRECTED] Watch it @Immanuel! The first </html> should be </head>.
+ 4
For seo
where should we add meta tags?
where should we add h1?
can we use 2 of h2?
thank you