HTML Basics (l0)
HTML Basics (l0)
good:
bad:
good:
<marker attribute="argument">text</marker>
<head>
… <title> My name is l</title>
</head>
<body>
Hello
</body>
</html>
A tag. <html> contains only one <head> and one body <body>.
The tags that we will find in the body divide the content into logical sections, in the form of blocks (paragraphs,
tables, etc.). These are called block-level elements.
Elements that represent text properties (strong, bold) that appear in a block are called "line elements".
HTML Program Examples