Week 4 - Tables & Search Engines. .
- Understand the basic ways a search engine works
- Learn the basic structure of a table
- Learn how to combine table rows & columns for layout
Table1.html Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<TITLE>Table 1</TITLE>
<META name="description" content="week4 HTML assignment">
<META name="keywords" content="HTML,Week4,table1">
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-5">
</HEAD>
<BODY>
<H1><font color="green">Week 4 of Introduction to HTML 4.01 - Table 1</font></H1><br>
<a href="http://www.warrenswork.com/classes/into_to_html_2009/table2.html">Goto Table2</a><br>
<table frame="vsides" rules="cols" border="3" cellpadding="2" cellspacing="2" summary="Week 4 Table" width="800">
<caption>Search Engine Table1</caption>
<thead>
<tr align="center" bgcolor="e7e7c8">
<th>URL</th>
<th>Search Engine</th>
<th>Criteria</th>
<th>Use Robots</th>
<th>Submissions</th>
</tr>
</thead>
<tfoot>
<tr align="center" bgcolor="e7e7c8">
<th>URL</th>
<th>Search Engine</th>
<th>Criteria</th>
<th>Use Robots</th>
<th>Submissions</th>
</tr>
</tfoot>
<tbody>
<tr align="center">
<td>www.google.com</td>
<td><a href="http://www.google.com">Google</a></td>
<td>Google is a mechanized search engine, which employs robots known as 'spiders' to crawl the web on a daily basis and find sites for inclusion in the Google index.</td>
<td>Yes</td>
<td>Automatic Crawl and Manual Submission</td>
</tr>
<tr align="center" bgcolor="d6dbfa">
<td>www.yahoo.com</td>
<td><a href="http://www.yahoo.com">Yahoo</a></td>
<td>The Yahoo! Search index, which contains several billion web pages, is more than 99% populated through the free crawl process. Yahoo! also offers several ways for content providers to submit web pages and content directly to the Yahoo! Search index and the Yahoo! Directory</td>
<td>Yes</td>
<td>Automatic Crawl and Manual Submission</td>
</tr>
<tr align="center">
<td>www.ask.com</td>
<td><a href="http://www.ask.com">Ask</a></td>
<td>Ask utilizes website crawlers to collect raw data and gather information that is used in building our ever-expanding search index. Crawling ensures that the information in our results is as up-to-date and relevant as it can possibly be. </td>
<td>Yes</td>
<td>Automatic Crawl</td>
</tr>
<tr align="center" bgcolor="d6dbfa">
<td>www.auctionalfie.com</td>
<td><a href="http://www.auctionalfie.com/">AuctionAlfie</a></td>
<td>Auction Alfie provides an easy tool for searching across the best auction and classified websites in Australia, like eBay, eBid, Oztion and Gumtree.</td>
<td>Yes</td>
<td>Automatic Crawl and Manual Submission</td>
</tr>
</tbody>
</table>
<br>
<a href="http://www.warrenswork.com/classes/into_to_html_2009/table2.html">Goto Table2</a><br><br>
<a href="http://www.warrenswork.com/classes/into_to_html_2009/week4.html">Intro to HTML Week4</a><br>
<a href="http://www.auctionpalms.com">AuctionPalms.com</a>
</BODY>
</HTML>
Table2.html Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<TITLE>Table 2</TITLE>
<META name="description" content="week4 HTML assignment">
<META name="keywords" content="HTML,Week4,table2">
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-5">
</HEAD>
<BODY>
<H1><font color="green">Week 4 of Introduction to HTML 4.01 - Table 2</font></H1><br>
<a href="http://www.warrenswork.com/classes/into_to_html_2009/table1.html">Goto Table1</a><br>
<table border="1" cellpadding="2" cellspacing="2" summary="Week 4 Table" width="800">
<caption>Search Engine Table2</caption>
<thead>
<tr align="center" bgcolor="e7e7c8">
<th>Search Engine</th>
<th>URL</th>
<th>Criteria</th>
<th>Use Robots</th>
<th>Submissions</th>
</tr>
</thead>
<tfoot>
<tr align="center" bgcolor="e7e7c8">
<th>Search Engine</th>
<th>URL</th>
<th>Criteria</th>
<th>Use Robots</th>
<th>Submissions</th>
</tr>
</tfoot>
<tboby>
<tr align="left">
<td><a href="http://www.google.com">Google</a></td>
<td>www.google.com</td>
<td>Voted</td>
<td>Yes</td>
<td rowspan="3" align="center" valign="top">Row Span</td>
</tr>
<tr align="center" bgcolor="d6dbfa">
<td><a href="http://www.yahoo.com">Yahoo</a></td>
<td>www.yahoo.com</td>
<td>Voted</td>
<td>Yes</td>
</tr>
<tr align="right">
<td><a href="http://www.ask.com">Ask</a></td>
<td>www.ask.com</td>
<td>Voted</td>
<td>Yes</td>
</tr>
<tr align="center" bgcolor="d6dbfa">
<td><a href="http://www.auctionalfie.com/">AuctionAlfie</a></td>
<td>www.auctionalfie.com</td>
<td colspan="2">Column Span</td>
<td>No</td>
</tr>
<tr align="left">
<td><a href="http://www.auctionalfie.com/">AuctionAlfie</a></td>
<td>www.auctionalfie.com</td>
<td>Extra Line</td>
<td colspan="2" align="center">Column Span</td>
</tr>
</tbody>
</table>
<br>
<a href="http://www.warrenswork.com/classes/into_to_html_2009/table1.html">Goto Table1</a><br><br>
<a href="http://www.warrenswork.com/classes/into_to_html_2009/week4.html">Intro to HTML Week4</a><br>
<a href="http://www.auctionpalms.com">AuctionPalms.com</a>
</BODY>
</HTML>
Week 4 of Introduction to HTML 4.01 - Table 1
Goto Table2
| URL | Search Engine | Criteria | Use Robots | Submissions |
|---|---|---|---|---|
| www.google.com | Google is a mechanized search engine, which employs robots known as 'spiders' to crawl the web on a daily basis and find sites for inclusion in the Google index. | Yes | Automatic Crawl and Manual Submission | |
| www.yahoo.com | Yahoo | The Yahoo! Search index, which contains several billion web pages, is more than 99% populated through the free crawl process. Yahoo! also offers several ways for content providers to submit web pages and content directly to the Yahoo! Search index and the Yahoo! Directory | Yes | Automatic Crawl and Manual Submission |
| www.ask.com | Ask | Ask utilizes website crawlers to collect raw data and gather information that is used in building our ever-expanding search index. Crawling ensures that the information in our results is as up-to-date and relevant as it can possibly be. | Yes | Automatic Crawl |
| www.auctionalfie.com | AuctionAlfie | Auction Alfie provides an easy tool for searching across the best auction and classified websites in Australia, like eBay, eBid, Oztion and Gumtree. | Yes | Automatic Crawl and Manual Submission |
| URL | Search Engine | Criteria | Use Robots | Submissions |
Goto Table2
Intro to HTML Week4
AuctionPalms.com
Week 4 of Introduction to HTML 4.01 - Table 2
Goto Table1
| Search Engine | URL | Criteria | Use Robots | Submissions |
|---|---|---|---|---|
| www.google.com | Voted | Yes | Row Span | |
| Yahoo | www.yahoo.com | Voted | Yes | |
| Ask | www.ask.com | Voted | Yes | |
| AuctionAlfie | www.auctionalfie.com | Column Span | No | |
| AuctionAlfie | www.auctionalfie.com | Extra Line | Column Span | |
| Search Engine | URL | Criteria | Use Robots | Submissions |
Goto Table1
Intro to HTML Week4
AuctionPalms.com
