Example for html tags

HTML Basic Examples

In this chapter we will show some basic HTML examples.

Don’t worry if we use tags you have not learned about yet.

HTML Documents

All HTML documents must start with a document type declaration: .

The HTML document itself begins with and ends with .

The visible part of the HTML document is between and .

Example

My First Heading

My first paragraph.

The Declaration

The declaration represents the document type, and helps browsers to display web pages correctly.

It must only appear once, at the top of the page (before any HTML tags).

The declaration is not case sensitive.

The declaration for HTML5 is:

HTML Headings

HTML headings are defined with the to tags.

defines the most important heading. defines the least important heading:

Example

This is heading 1

This is heading 2

This is heading 3

HTML Paragraphs

HTML paragraphs are defined with the

tag:

Example

This is a paragraph.

This is another paragraph.

HTML links are defined with the tag:

Example

The link’s destination is specified in the href attribute.

Attributes are used to provide additional information about HTML elements.

You will learn more about attributes in a later chapter.

HTML Images

HTML images are defined with the tag.

The source file ( src ), alternative text ( alt ), width , and height are provided as attributes:

Example

How to View HTML Source

Have you ever seen a Web page and wondered «Hey! How did they do that?»

View HTML Source Code:

Right-click in an HTML page and select «View Page Source» (in Chrome) or «View Source» (in Edge), or similar in other browsers. This will open a window containing the HTML source code of the page.

Inspect an HTML Element:

Right-click on an element (or a blank area), and choose «Inspect» or «Inspect Element» to see what elements are made up of (you will see both the HTML and the CSS). You can also edit the HTML or CSS on-the-fly in the Elements or Styles panel that opens.

Источник

HTML Basic Tags

Understanding basic HTML tags is important while learning HTML. Here are the HTML elements that are used more frequently than others. They are:

  • the heading — tags,
  • the tag,
  • the tag,
  • the tag,

HTML documents

All HTML documents must start with a declaration which specifies the document type: .

The HTML document begins with and ends with .

The main part of the HTML document is located between and .

Example of an HTML document:

html> html> head> title>Title of the document title> head> body> h1>This is heading 1 h1> h2>This is heading 2 h2> p>Here is the paragraph. p> body> html>

HTML headings

The heading elements are used for structuring headings.There are six types of HTML headings starting from to .

Example of the HTML headings:

html> html> head> title>Title of the document title> head> body> h1>This is heading 1 h1> h2>This is heading 2 h2> h3>This is heading 3 h3> h4>This is heading 4 h4> h5>This is heading 5 h5> h6>This is heading 6 h6> body> html>

Result

headings

HTML paragraphs

Example of the HTML paragraphs:

html> html> head> title>Title of the document title> head> body> h2>Elements example h2> p>This is some paragraph. p> p>This is another paragraph br/> with line break. p> body> html>

Result

paragraph

HTML images

The attributes of this tag are:

The tag is used for inserting HTML images.

Example of the HTML images:

html> html> head> title>Title of the document title> head> body> h1>This is an image example h1> img src="/uploads/media/default/0001/01/25acddb3da54207bc6beb5838f65f022feaa81d7.jpeg" alt="Aleq" width="200" height="185"/> body> html>

Result

Image example

The tag is used for inserting HTML links. You can specify the destination of the link with the help of href attribute.

html> html> head> title>Title of the document title> head> body> a href="https://www.w3docs.com/">W3docs.com a> body> html>

Result

Link example

HTML buttons

You can specify the HTML buttons with the tag.

Example of the HTML tag:

html> html> head> title>Title of the document title> head> body> h1>Example of the HTML <button> tag: h1> p>You can specify the HTML buttons with the button tag: p> button type="button">Button button> body> html>

HTML lists

Example of the HTML lists:

html> html> head> title>Title of the document title> head> body> h2>An unordered list h2> ul> li>Pen li> li>Pencil li> li>Ruler li> li>Book li> ul> h2>An ordered list h2> ol> li>Pen li> li>Pencil li> li>Ruler li> li>Book li> ol> body> html>

HTML horizontal lines

Example of the HTML


tag:

html> html> head> title>Title of the document title> head> body> h1>Welcome to W3Docs h1> hr> p> Learn to design and build professional websitebr> Learn to design and build professional website p> p>Learn to design and build a professional website p> hr> p>Learn to design and build professional website p> p>Learn to design and build professional website p> p>Learn to design and build professional website p> hr> body> html>

Источник

Читайте также:  Проверка содержимого форм javascript
Оцените статью