| | | |
|---|
Comments, Questions, Suggestions, or Opinions Tutorials Lesson:
Exercises For every lesson:
My accounts:
|
Lesson 1: What is HTML?
What is HTML?HTML is a language for describing web pages.
HTML TagsHTML markup tags are usually called HTML tags
<tagname>content</tagname>
HTML Elements"HTML tags" and "HTML elements" are often used to describe the same thing. But strictly speaking, an HTML element is everything between the start tag and the end tag, including the tags: HTML Element:
<p>This is a paragraph.</p>
Web BrowsersThe purpose of a web browser (such as Google Chrome, Internet Explorer, Firefox, Safari) is to read HTML documents and display them as web pages. The browser does not display the HTML tags, but uses the tags to determine how the content of the HTML page is to be presented/displayed to the user:
HTML Page StructureBelow is a visualization of an HTML page structure:
<html>
<body>
</html>
<h1>This a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
HTML VersionsSince the early days of the web, there have been many versions of HTML:
Click here to take the exercises of this lesson -->
|