|
02 Basic HTML code
HTML files typically consist of several basic sections,
described by the following tags:
<
html
>
<
head
>
<
title
>
</
title
>
</
head
>
<
body
>
</
body
>
</
html
>
HTML files may contain comments, which are bordered at the start and
end as follows:
<!-- Anything between these two bounding tags is a comment -->
HTML is not case sensitive.
HTML ignores white space.
|