Blog o’ Will Cook for Food
Not just another Wordpress blog

8.1-8.8

8.1

1. hypertext consists of nodes and links between them

2. hypermedia adds Guis, images, sound, annimation and appliactions to hypertext.

3. uniform resource locators, web addresses.

8.2

1. Hypertext markup language

2. they tell the computer how to show the text and website

3. <HTML>

<HEAD> <TITLE> YO </TITLE> </HEAD>

<BODY> SUP </BODY>

</HTML>

4. an HTML comment is <!– this –>

8.3

1. to display several lines of text without word wrap

2. to show text “as is”

3.

<H1> level 1 </H1>

<P ALIGN=CENTER> Text. </P ALIGN=CENTER>

<H2> level 2 </H2>

8.4

1. the following text will be italic

2. escape sequences allow special characters like < > and & to be displayed, instead of considered as code for HTML

8.5

1.Definition (displays terms and definitions), Ordered (lists things 1, 2, 3…), Nested (Lists inside other lists, sometimes a few levels deep)

2.

<UL>

<LI> Mother — Amanda

<OL>

<LI> Grandmother — Penny

<LI> Grandfather — Roy

</OL>

<LI> Father — Neil

<OL>

<LI> Grandfather — Don

<LI> Grandmother — Pat

</OL>

</UL>

8.6

1. <A>

2. an absolute path name is a path that specifies the exact position of the file in the computer’s directorial structure.

3. A relative path name is one that specifies the location of a target document

4. <A href=”http://www.worcesteracademy.org”>WA Website</A>

8.7

1. an inline image is a graphical image displayed when a user opens a page external images are links to images not shown until the link is clicked.

2. <IMG src=”somepic.jpg”>

3. <IMG src=”image.gif” ALIGN=CENTER HEIGHT=200 WIDTH=200>

4.Either by linking to the picture with text or showing a thumbnail of the picture

<A href=”image.gif”>Some picture</A>

<A href=”image.gif”><IMG src=”image.gif”></A>

8.8

1. To make a table, you use <TABLE> to start it, <CAPTION> for the title, <TR> makes a new row, <TH> defines a header cell, and <TD> defines a data cell.

2.

<TABLE>

<CAPTION ALIGN=CENTER>

A number table

</CAPTION>

<TR>

<TD> 1 </TD>

<TD> 2 </TD>

<TD> 3 </TD>

</TR>

<TR>

<TD> 4 </TD>

<TD> 5 </TD>

<TD> 6 </TD>

</TR>

<TR>

<TD> 7 </TD>

<TD> 8 </TD>

<TD> 9 </TD>

</TR>

</TABLE>

No Responses Yet to “8.1-8.8”

Leave a Reply