Introduction to web and Html
INTRODUCTION TO WEB AND HTML
WEB
The Web is just one of the ways that information is shared over the Internet.
HTML
Well, Html stands for Hyper Text Markup Language. Web pages are formatted in a language called Hypertext Markup Language (HTML). It this language that allows users to click through pages on the Web via links. The Web uses HTTP protocol to transmit data and share information. Browsers such as Internet Explorer, Google Chrome or Mozilla Firefox are used to access Web documents, or Web pages, which are connected via links.
HTML TAGS
There are many Html Tags which are generally used to display a web page. I am going to talk about some of them today in detail.
H1
Also called Heading tag.
This is heading 1
H2
This is heading 2
H3
This is heading 3
H4
This is heading 4
H5
This is heading 5
H6
This is heading 6
IMG TAG
The img tag is used to embed an image in an HTML page. src - Specifies the path to the image alt - Specifies an alternate text for the image, if the image for some reason cannot be displayed
HTML a tag
The most important attribute of the element is the href attribute, which indicates the link's destination.