HTML:
❤HTML stands for Hyper Text Markup Language.
❤It is a standard markup language for web pages.
❤With html you can create your own website.
The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in web browser. It can be assisted by technologies such as CSS and scripting technologies such as javascript.
What is HTML:
- HTML describes about structure of a Web page.
- HTML consists of a series of elements in web page.
- HTML elements shows the browser how to display the content in the website.
- HTML elements label or shows pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
A Simple HTML Document
EXPLINATION:
πThe <!DOCTYPE html> declaration says that this document is an HTML5 document
πThe <html> element is the root element of an HTML page
πThe <head> element contains meta information about HTML page
πThe <title> element specifies a title for the HTML page that is the browser link.
πThe <body> element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
πThe <h1> element defines heading
πThe <p> element defines paragraph in html code
Basic HTML page Structure:
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>this is first heading</h1>
<h2>this is second heading</h2>
<p>This is first paragraph</p>
</body>
</html>.
More topics on html
1. html editor- used to write html code.
No comments:
Post a Comment