/ tests / sam-test-infrastructure / src / sam_test_infrastructure / test_data / web_content / sample.html
sample.html
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>Test HTML Document</title> 7 </head> 8 <body> 9 <h1>Test Content</h1> 10 <p>This is a test HTML document for web_request tool testing.</p> 11 <ul> 12 <li>Item 1</li> 13 <li>Item 2</li> 14 <li>Item 3</li> 15 </ul> 16 <div id="content"> 17 <p>Additional test content with <strong>formatting</strong> and <em>emphasis</em>.</p> 18 </div> 19 </body> 20 </html>