HTML
Basics
1] HTML
Headings
HTML headings
are defined with the <h1> to <h6> tags.
2] HTML Paragraphs
HTML paragraphs are defined with the
<p> tag.
3] HTML Links
HTML links
are defined with the <a> tag.
4] HTML Images
HTML images
are defined with the <img> tag.
5] HTML
Images
HTML images are
defined with the <img> tag.
Description
It is possible to create webpages without knowing anything
about the HTML source behind the page.
There are excellent editors on the market that will take
care of the HTML parts. All you need to do is layout the page.
However, if you want to make it above average in webdesign,
it is strongly recommended that you understand these tags.
You can write your HTML by hand with almost any available
text editor, including notepad that comes as a standard program with Windows.
All
you need to do is type in the code, then save the document, making sure to put
an .html extension or an .htm extension to the file (for
instance "mypage.html").
Example
<html>
<body>
<p>This
is a paragraph.</p>
<p>This
is a paragraph.</p>
<p>This
is a paragraph.</p>
</body>
</html>
Display
This is a paragraph.
This is a paragraph



0 comments:
Post a Comment