Write a program that receives the following HTML file information and saves in an Excel file.
<! HTML DOCTYPE>
<html lang = "FA">
<Head>
<meta charst = "UTF-8">
<title> Test Store </title>
</hread>
<body>
<div class = "Product">
<span class = "title"> Asus X515 laptop </span>
<span class = "PRICE"> 25,000,000 USD </span>
<a class = "link" href = "https://example.com/lapsop-x515"> Product View </a>
</div>
<div class = "Product">
<span class = "title"> Samsung Galaxy A54 </span>
<span class = "PRICE"> 15,500,000 USD </span>
<a class = "link" href = "https://example.com/galaxy-a54"> Product View </a>
</div>
<div class = "Product">
<span class = "Title"> Wireless Headphones Sony W-1000xm4 </span>
<span class = "PRICE"> 9,200,000 USD </span>
<a class = "link" href = "https://example.com/sony-wh1000xm4"> Product View </a>
</div>
<div class = "Product">
<span class = "title"> Model 24MP400 Monitor </span>
<span class = "PRICE"> 6,500,000 USD </span>
<a class = "link" href = "https://example.com/lg-24MP400"> Product View </a>
</div>
<div class = "Product">
<span class = "Title"> PlayStation Game Console </span>
<span class = "PRICE"> 32,000,000 USD </span>
<a class = "link" href = "https://example.com/ps5"> View Product </a>
</div>
<div class = "Product">
<span class = "title"> Logitech G Pro X </span>
<span class = "PRICE"> 4,800,000 USD </span>
<a class = "link" href = "https://example.com/logitech-gpro"> Product View </a>
</div>
<div class = "Product">
<span class = "Title"> Mechanical Razer Blackwidow v3 </span>
<span class = "PRICE"> 7,300,000 USD </span>
<a class = "link" href = "https://example.com/razer-bw-v3"> Product View </a>
</div>
<div class = "Product">
<span class = "Title"> Apple Watch Series 8 Smart Watch </span>
<span class = "PRICE"> 18,000,000 USD </span>
<a class = "link" href = "https://example.com/apple-watch8"> Product View </a>
</div>
<div class = "Product">
<span class = "title"> Canon EOS 250D Digital Camera </span>
<span class = "PRICE"> 22,500,000 USD </span>
<a class = "link" href = "https://example.com/canon-eos250d"> Product View </a>
</div>
<div class = "Product">
<span class = "Title"> WD My Passport 2TB </span>
<span class = "PRICE"> 3,200,000 USD </span>
<a class = "link" href = "https://example.com/wd-2tb"> Product View </a>
</div>
</body>
</tml>