Another useful html tag that you will use, is <HR> tag. If you need to separate text in your web page by horizontal lines , you may use this tag.
<BODY>
First section
<HR>
Second section
</BODY> (more…)
Another useful html tag that you will use, is <HR> tag. If you need to separate text in your web page by horizontal lines , you may use this tag.
<BODY>
First section
<HR>
Second section
</BODY> (more…)
Any object such as text, graphic images etc. that leads us to a new page on the web is called a link. Links can point to a page on our site or to a web page on another site.
In this lesson we will learn how to make links. (more…)
In previous lesson you learned how to use an image as a background for web pages. It was
<BODY BACKGROUND=”image.gif”>
</BODY>
Here we want to learn how to add an image in a web page. Tag that will be used for this purpose is <IMG> tag. Actually we will need parameters for this tag that specify image file location, file name and other optional parameters. Look at this example: (more…)
If you need a text that is indented from both sides of web page you can use <BLOCKQUOTE> tag.
Text that is enclosed in this tag will have a margin from left and right of your web page. (more…)