index.html file from lab 20.<b> </b> creates bold
text and <i> </i> italic text how can we create
bold italic text? Make your name
bold italic in your web page.
<a href="http://myslu.stlawu.edu/~ehar">Ed</a> creates
a link to my web page and looks like this ...
Ed.
T:\Harcourt\Spring2008\CS140\gallery\thumbnails
to your public_html folder.
img tag to insert an image into a web page.
Insert the image polarbear.jpg from the thumbnails folder you just copied into your web page. It should be small.
T:\Harcourt\Spring2008\CS140\gallery to your public_html folder.
img tag.
<table border="1">
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
<tr>
</table>
table tag is used to create a table. You create rows within the table
using the tag tr, which means table row.
The tag td means table data and is used to create one cell
within a row.
table tag the attribute border="1"
specifies that the table border should be one pixel wide. What happens
if we change the 1 to a 0?
thumbnails
folder into the lower left table cell. That is, use the img
tag inside a table cell.