HTML Practical
  1.Practice with basic HTML elements <html> <head>     <title>Basic Html Structure</title> </head> <body>     <h1>Welcome to HTML!</h1>     <p>This is a basic HTML Structure example.</p> </body> </html> 2.Design a simple web page with text, paragraph and line break <!DOCTYPE html> <html> <head> <title>Text and paragraph formatting</title> </head> <body> <p>This is a paragraph of text.</p> <p> Here is another paragraph with a line break.<br>This text is on a new line.<p> </body> </html> 3.Format text, change background color, and insert pictures <html> <head>     <title>Formatting text and adding media</title>     <style>          body{backgroung-color:lightblue;               }   ...
