Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of HTML main Tag</title> </head> <body> <header> <h1>Welcome to our website</h1> </header> <main> <h1>Core Web Technologies</h1> <p>HTML and CSS are two of the core technologies for building web pages.</p> <article> <h2>What is HTML?</h2> <p>HTML stands for HyperText Markup Language. HTML is the standard markup language for describing the structure of web pages.</p> </article> <article> <h2>What is CSS?</h2> <p>CSS stands for Cascading Style Sheet. CSS allows you to specify various style properties for HTML elements such as colors, backgrounds, fonts etc.</p> </article> </main> <footer> <p>copyright © tutorialrepublic.com</p> </footer> </body> </html>