e com partical
1. Create a simple HTML page with:Headings, paragraphs, bold/italic text <!DOCTYPE html> <html> <head> <title>Simple HTML Page</title> </head> <body> <h1>Main Heading (H1)</h1> <h2>Sub Heading (H2)</h2> <h3>Smaller Heading (H3)</h3> <p>This is a paragraph of text. HTML is used to structure content on the web.</p> <p> This text contains <b>bold text</b> and <i>italic text</i>. </p> <p> You can also combine them like <b><i>bold and italic together</i></b>. </p> </body> </html> 2. Create a music promotion webpage (include audio and video files in your html page) <!DOCTYPE html> <html> <head> <title...