Web Development(3)

Day 3

Video 11 to 13

Semantic and non-semantic elements

The elements whose names can tell the browser what they do are called segmantic tags. Non-semantics are the opposite of these. Sematic tags are used more.

HTML Semantic Tags

Exercise 1

Enities, Code tag


We can show the code now by using &_lt; ( _ don't use ).
For example, the basic structure of html is:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>

</body>
</html>
    

Check details here

© D