HTML TUTORIAL

HTML5 INTRODUCTION




What is HTML5?

HTML is stand for Hyper Text Markup Language,it is easy and fun to learn.

    HTML describe the structure of web pages.

Introduction

    HTML describe the structure of web pages. HTML describe the structure of web pages. HTML is the fifth and current major version of the html standard . . . .

Why learn HTML5?

    IT is essential to learn HTML if you want to build web sites,you can't build one if you don't know HTML because it 's one of the prerequisites in learning other language used for web development

Try if sellf

    first of the download vscod editor otherwise click on the VSCODE EDITOR DOWNLOAD NOW and choose the option those who want to use on window will such the point and try to take those on linux VSCODE EDITOR DOWNLOAD NOW , one if you don't know HTML because it 's one of the prerequisites in learning other language used for web development

Example

Try to this code editor

Please enter the above example by typing it inside this code editor.

HTML Tags

HTML Tags are element names surrounded by angle brackets.

In HTML we start and end tags. Look at the example

<html>: Defines the root of an HTML document.

<head>: Contains metadata about the document, such as title and links to stylesheets.

<title>: Defines the title of the document, displayed in the browser's title bar.

<body>: Contains the content of the document, such as text, images, and other elements.

<h1>, <h2>, <h3>, <h4>, <h5>, <h6>: Define headings of various sizes.

<p>: Defines a paragraph.

<a>: Defines a hyperlink.

<img>: Defines an image.

<ul>, <ol>, <li>: Define unordered lists, ordered lists, and list items, respectively.

<div>: Defines a division or section in an HTML document, often used for layout purposes.

<span>: Defines a section in an HTML document for styling purposes, typically used with CSS.

Comments

Popular Posts