Introduction to HTML
Introduction to HTML
HTML stands for HyperText Markup Language. It is the standard markup language for documents designed to be displayed in a web browser.
What is HTML?
- HTML describes the structure of a Web page semantically.
- HTML elements are the building blocks of HTML pages.
- Elements are represented by tags.
Example
<!DOCTYPE html> <html> <body> <h1>Hello World</h1> </body> </html>
Click on the "Try it Yourself" button to see how it works.
Try it Yourself »