•A
line break ends the line you are currently on and resumes on the next line.
Placing <br
/> within the code is the same as pressing the return key in a word
processor. Use the <br /> tag within the <p> (paragraph)
tag.
•HTML Code:
<p> Will Mateson<br />
Box 61<br />
Cleveland, Ohio<br
/>
</p>
•The web got its spidery name from the
plentiful connections between web sites. These connections are made using
anchor tags to create links. Text, Images, and Forms may be used to create
these links .
HTML - Hypertext Reference (href)
The href attribute defines
reference that the link refers to. Basically this is where the user will be
taken if they wish to click this link
Hypertext references can be
Internal, Local, or Global.
•Internal - Links to anchors on the current
page
•Local - Links to other pages within your
domain
•Global - Links to other domains outside of
your sit
HTML Code:
•Internal - href="#anchorname"
•Local - href="../pics/sunset.jpg"
•Global - href="http://www.tizag.com/"
•Use
the <a></a> tags to define the start and ending of an anchor,Which
allows the web to be the outstanding collection of linked information. Decide
what type of href attribute you need and place this attribute
into the opening tag. The text you place between the opening and closing tags
will be shown as the link on a page.The HREF atribute stand for Hypertext Reference --- the
technical name for the link.
HTML Code:
•<a href="http://www.tizag.com/"
target="_blank" >Tizag Home</a>
•<a href="http://www.espn.com/"
target="_blank" >ESPN Home</a>
•<a href="http://www.yahoo.com/"
target="_blank" >Yahoo Home</a>
0 comments:
Post a Comment