1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<html>
<head>
<base href='http://example.com' />
<title>Sample page with image links for testing HTMLImageLinkExtractor</title>
</head>
<body>
<div id='wrapper'>
<div id='subwrapper'>
<img src='sample1.jpg' alt='sample 1' />
<a href='sample2.html' title='sample 2'>
<img src='sample2.jpg' alt='sample 2' />
</a>
<a href='sample3.html' title='sample 3'>sample 3 image</a>
</div>
<img src='sample4.jpg' title='sample 4' />
<img src='sample4.jpg' title='sample 4 repetition' />
</div>
</body>
</html>
|