03 HTML Documents

HTML Documents

All HTML documents must start with a document type declaration.

<! DOCTYPE html>

The HTML document itself begins with <html> and ends with </html>

The visible part of the html document is between <body> and </body>


<!DOCTYPE> Declaration

The <!DOCTYPE> 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 <!DOCTYPE> declaration is not case sensitive.

The<!DOCTYPE> declaration for HTML5 is

<!DOCTYPE html>


HTML Headings 

HTML headings are defined with the <h1> to <h6> tags

<h1> defines the most important heading. <h6> defines the least important heading.


HTML paragraphs

HTML paragraphs are defined with the <p> tag.


HTML Links 

HTML links are defined with the <a> tag.

Example

<a href="https://www.google.com">This is a link</a>

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


HTML Images

HTML images are defined with the <img> tag.


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

<img src="google.jpg" alt="www.google.com" width="100" height="100">


How to view HTML Source

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.

Comments

Popular posts from this blog

04 HTML Elements

HTML element

0001