Hyperlinks 1 2
Hyperlinks Create 2 new notepads – save one as MainPage.htm and the other as FirstPage.htm On the MainPage type the following
Add the code to each notepad with the hyperlink. Take a screenshot of the notepad like I have here – add this to your powerpoint Add a screenshot of the browser
Exercise : Tables Open a new notepad and copy in the code on the right Save the notepad as “Table.htm”. Change the border number and see what happens Take a screenshot of what you see Explain what the following mean TR TD TH Label these tags and show where they are on the internet page <HTML> <HEAD> <TITLE>Table</TITLE> </HEAD> <BODY> <TABLE BORDER=1> <TH>Song</TH> <TR><TD>No Woman, NoCry</TD></TR> <TR><TD>Catch a Fire</TD></TR> </TABLE> </BODY> </HTML>
Open the file on web browser. This would give you the table below: Important Note This table uses the basic three tags all tables must have: <TABLE ...> This creates the table. Most of the overall properties of the table are defined here, such as if it has borders and what is the table's background colour. <TR ...> (Table Row) This defines each row of the table. <TD ...> (Table Data) This defines each cell of the table.