HTML Basic Examples

In this chapter, we\’ll show you some simple examples of HTML code.

Don\’t worry if we use tags that you haven\’t seen before.

HTML Documents

All HTML files must start with <!DOCTYPE html>, which says what kind of file it is.

The HTML document starts with the <html> tag and ends with the </html> tag.

Between <body> and </body> is the part of the HTML file that can be seen.

Example

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>Your Heading</h1>
<p>Your paragraph.</p>

</body>
</html>

 

The Declaration of Type ( <!DOCTYPE> )

The document type is shown by the <!DOCTYPE> declaration, which helps browsers show web pages correctly.

It should only be at the top of the page (before any HTML tags).

The case of the words in the <!DOCTYPE> declaration doesn\’t matter.

This is what the HTML5 <!DOCTYPE> declaration says:

<!DOCTYPE html>

 

Headings in HTML

The <h1> to <h6> tags are used to set up headings in HTML.

<h1> shows which heading is the most important.<
<h6> is the heading that is the least important:

Example

 

<h1>Your H1 Heading</h1>
<h2>Your H2 Heading.</h2>

.

.

<h6> Your H6 Heading</h6>

 

HTML Paragraphs

The <p> tag tells HTML what a paragraph is:

Example

<p>paragraph  example </p>

<p> second paragraph.</p>

HTML Links

The <a> tag is used to describe links in HTML:

Example

<a href=\”www.coderazaa.com\”>www.coderazaa.com</a>

In the href attribute, you can tell where the link goes.

Attributes are used to tell HTML elements more about themselves.

In the next chapter, you will learn more about attributes.

HTML Images

The <img> tag tells HTML what an image is.

As attributes, we give the source file (src), alternative text (alt), width, and height:

Example

<img src=\”coderazaa.jpg\” alt=\”coderazaa.com\” width=\”250\” height=\”150\”>

How to See the HTML Code

Have you ever seen a Web page and wondered \”Hey! how they do it?\”

Look at the HTML Source Code:

Right-click on an HTML page and choose \”View Page Source\” or \”View Source\” (in Chrome) or something similar (in Edge or other browsers).
This will open a new window with the page\’s HTML source code.

Inspect an HTML Element:

Right-click on an element or a blank area and choose \”Inspect\” or \”Inspect Element\” to see what the element is made of (you will see both the HTML and the CSS).
In the Elements or Styles panel that opens, you can also change the HTML or CSS on the fly.

Related Posts
Introduction to HTML

HTML Introduction HTML is the most common language used to mark up Web pages. What does HTML mean? Hyper Text Read more

What is HTML

HTML stands for Hyper Text Markup Language, which is a programming language used to make web pages and web apps. Read more

HTML text Editors

Editors for HTML text HTML files are text files, so any text editor can be used to make them. Text Read more

HTML Tags

Learn HTML Tags HTML tags are kind of like keywords that tell a web browser how to format and show Read more

HTML Elements

Elements make up an HTML file. These elements are what make web pages and tell you what content is on Read more

HTML Attributes

Attribute in HTML Attributes in HTML are special words that tell you more about an element. Attributes change the way Read more

HTML Headings

Headings in HTML The <h1> to <h6> tags are used to set up headings in HTML. <h1> shows which heading Read more

HTML Paragraphs

HTML Paragraphs A paragraph is a block of text that always starts on a new line. The HTML <p> element Read more

Scroll to Top