What is html a quick of html hyperlink in Html
A Quick Revison of html Tables and Hyp in HTML HTML stands for HyperText Markup Language. Hypertext refers to the way in which web pages (HTML documents) are linked together. When you click a link in a web page you are using hypertext. Markup Language describes how HTML works. With a markup language, you simply mark up a text document with tags that tell a web browser how to structure it to display When writing HTML, you add "tags" to the text in order to create the structure. These tags tell the browser how to display the text or graphics in the document.
Essential Html Tags
There are four sets of HTML tags that form the basic structure needed for every HTML file:
<html></html>
<head></head>
<title</title
<body> </body>
The<html></html>Tags
This basically defines the document as web page. It also identifies the beginning and end the HTML document. All other tags must be described within the html tag
The<head></head>tags
header contains information about the document that will not appear on the actual pag such as the title of the document which appears in title bar of the web page.
The<title></title>tags
The title tag defines the title that will appear in the title bar of your web browser. The title tags must appear between the head tags.
The<body></body>tagsThe body tags contain all the information and other content which is displayed on the web page. All your images, links and plain text must go between the body and </body> tags. Bas basic Html structure
<html>
< head>
title This is the title</title> <head>
<body>
This portion makes body of the text.
<body>
<html>
Creating an Html Document
To create an HTML web page you use the Notepad program and save the file as a web page by giving it extension .htm or .html.
Attributes Attributes extend the functionality of tags to make them more versatile. Attributes appear inside the opening tag. They have a syntax like<tag attribute-"value"> Text</tag>.
Text Formatting tags
The following HTML tags are used to format the appearance of the text on your web page.
Heading Tags <hn></hn>Heren varies from 1 to 6. There are 6 levels of headings available, from hl as the largest and most important heading, down to h6 as the smallest heading.
Bold Tags <b></b>The text in between these tags will be bold and will stand out against the text around it.
Italic Tags<I> </i>These tags display the text at a slight angle.
Underline Tags <u></U>It will make the text underlined.
Strike-out Tags <strike></strike> It puts a line right through the centre of the text, crossing it out.
Superscript Tags <sup></sup>The matter within this pair of tags will appear as superscript.
Subscript Tags <sub><sub/>The matter within this pair of tags will appear as subscript.
Paragraph Tags<p>You can use the <p> tag to start a new paragraph and the align attribute to align the paragraph text, It will insert a line break with extra line space in the beginning.
Centre Tags <center></centre>This tag makes everything in between the tags centred (in the middle of the page)
Font Tags <font></font>Font tags with required attributes are used to change the font type, size and colour of the tex on the web page.

تعليقات