HTML TUTORIAL
HTML5 INTRODUCTION
What is HTML5?
HTML is stand for Hyper Text Markup Language,it is easy and fun to learn.
Introduction
Why learn HTML5?
Try if sellf
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
Post a Comment