Introduction to HTML:
HTML Stands For Hyper Text Markup Language. Basically, HTML Is Not a Programming Language. It Is Used To Design a Web Page. HTML Language Is Not A Case-Sensitive Language. HTML is used to make a skeleton of a website.
HTML is a simple and powerful web-designing language. HTML language is also known as a FRONT-END Programming language. It Is Used To Create Web Pages and Structure Of The Web Page. HTML Uses Tags And Elements To Define The Different Parts Of a web page.
Who Is the Father Of HTML?
Sir Tim Berners-Lee also known as the Father Of HTML.
In 1990 Sir Tim Berners-Lee published the first website for sharing and organizing information on the World Wide Web(WWW). it is used to introduce the concept of hyperlinks.
HTML ORIGINS AND VERSIONS:
BASIC PROGRAM OF HTML:
Generally, a webpage have different sections like- headings tag(<h1,h2,h3....>), paragraphs tag(<p></p>), images tag(<img/>), link tag(<link/>) or more tags.
HTML allows us to mark up these sections using various tags, so web browsers( internet explorer, chrome, firefox, opera, edge, or more ) can understand the structure of our syntax and display the content accordingly.
Every HTML document starts with a declaration called the <!DOCTYPE="HTML"> tag, it is used to tell the browser which version of HTML you are using. After This, the root element of every HTML page is <HTML>. HTML root element is typically divided into two main sections: <head> tag And <body>Tag.
- HTML language helps us to create a web page.
- HTML describes the structure of a web page.
- HTML elements describe to browsers how to display the content of a web page.
A SIMPLE HTML DOCUMENT:
EXAMPLE EXPLANATION: ---
- The <!DOCTYPE html> declaration defines 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 the HTML page.
- The <title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab).
- 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 a large heading.
- The <p> element defines a paragraph
0 Comments