HTML stands for
Hypertext Markup Language, and it's the standard markup language used to create
web pages.
HTML is a subset of
Standard Generalized Markup Language (SGML) and is developed by the World Wide
Web Consortium (W3C) and Web Hypertext Application Technology Working Group
(WHATWG).
HTML Versions
Simple HTML Formatting
A Simple HTML Page Structure
Elements
<html> - Root element of an html page
<head> - Contains meta information about the documents
<title> - Specifies a title for the document
<body> - Contains the visible page content
HTML Editors
Write HTML
Using Atom
Step 1 : Open Atom.
Step 2 : Write some html.
Step 3 : Save the html page .
Step 4 : View he html page in
Browser.
Example:-
Now, Write html
Save the html page.
View the html page.
Rendering:
<i> : I talic
<b> : Bold
<u> : Underline
<sub> : Subscript
<sup> : Superscrip t
<big> : Bigger fon t (One size bigger)
<small> : Smaller fon t (One size smaller)
<del> : Dele te
<em> : Empahazied
<p> Paragraph
<h1> <h2> .......... <h6> there are decending order of heading
<a href="URL"> Hyperlink
<li> list item
<ol> Ordered list (Number)
<ul> Unordered list (Bullet)
<img src="URL"> Image
<marquee> Moving text (up,down,left,right)
<hr> Defines a thematic change in the content.
<link> Defines he relationship between a document & an external resource.
<table> Defines a table.
<th> Defines a header row in a table. (text bold)
<tr> Defines a row in a table.
<td> Defines a cell in a table.
<div> Defines a selection/division in a documents.
<br> Defines a single line break.
<! .... > Html comment.
<style> Defines style information of html.
<cite> Defines title of a work.
<q> Defines quotation of short line.
<abbr> Defines an abbreviation / acronym.
Comments
Post a Comment