|
Home
Languages
VB6
JavaScript
Perl
HTML
SQL
Java
DOS
Forums
Web Site
Software
gbCodeLib
Personal
Webcam
Biography
Contact Me
|
GBIC >>
Source Code >>
HTML >> Snippet
|
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.
|
|
|
|