mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-25 10:03:54 +00:00
35 lines
927 B
HTML
35 lines
927 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Example page</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id='wrapper'>
|
||
|
<div id='content'>
|
||
|
<table id='product_data'>
|
||
|
<tr>
|
||
|
<td class='prod_header'>Manufacturer</td>
|
||
|
<td class='prod_header'>Name</td>
|
||
|
<td class='prod_header'>Description</td>
|
||
|
<td class='prod_header'>Weight</td>
|
||
|
<td class='prod_header'>Price</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class='prod_attrib'>Bill & Ted's Farm</td>
|
||
|
<td class='prod_attrib'>Bananas</td>
|
||
|
<td class='prod_attrib'>Delicious fruit</td>
|
||
|
<td class='prod_attrib'>2 kg.</td>
|
||
|
<td class='prod_attrib'>$ 300</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class='prod_attrib'>Grandma's</td>
|
||
|
<td class='prod_attrib'>Apple pie</td>
|
||
|
<td class='prod_attrib'>Grandma's best dish</td>
|
||
|
<td class='prod_attrib'>0.25 kg</td>
|
||
|
<td class='prod_attrib'>$ 200</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|