What Is HTML

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

What is HTML?

HTML is a language for describing web pages.


O HTML stands for per %ext arkup anguage
O HTML is not a programming language, it is a markup language
O markup language is a set of markup tags
O HTML uses markup tags to describe web pages

HTML Tags
HTML markup tags are usuall called HTML tags
O HTML tags are kewords surrounded b angle brackets like <html>
O HTML tags normall come in pairs like <b> and </b>
O The first tag in a pair is the start tag, the second tag is the end tag
O $tart and end tags are also called opening tags and closing tags

HTML Documents = Web Pages


O HTML documents describe web pages
O HTML documents contain % tags and plain text
O HTML documents are also called web pages
html
<body

<h1My First Heading</h1

<pMy first paragraph.</p

</body
</html
xample xplained
O The text between <html> and </html> describes the web page
O The text between <bod> and </bod> is the visible page content
O The text between <h1> and </h1> is displaed as a heading
O The text between <p> and </p> is displaed as a paragraph

You might also like