HTML INTRODUCTION
HTML stands for hypertext markup language, for creating web page.
Hypertext refers to the way in which web page are linked together, Thuse the link available on a webpage is called Hypertext.
Markup language simply make-up a text document with tag that tell a web browser how to structure it to display.
What is HTML:
- HTML stands for Hyper Text Markup Language
- HTML is the standard markup language for creating Web pages
- HTML describes the structure of a Web page
- HTML consists of a series of elements
- HTML elements tell the browser how to display the content
- HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
HTML DOCUMENT STRUCTTURE
<! DOCTYPE html> <html> <head> <title> This Is Title </title> </head> <body> Body related tages <body> <html> |
STEP 2: Write some HTML code.
STEP 3: Save the HTML page.
STEP 4: View your HTML page in your browser.