What is HTML?
What is HTML used for?
Hypertext Markup Language: a language made for creating web pages. The language computers use to communicate is HTML. A text which has a link within it is a hypertext, if you click it it will take you elsewhere.
HTML is used for creating web pages and web applications. The programmer through HTML can add graphics, videos and sound to the web pages.
Why are we learning HTML?
HTML is the basic language and if anyone is thinking of becoming more serious about web development or blockchain developer, knowing HTML makes it easier for you to learn other programming languages. It’s beneficial to learn for developers.
What is an HTML tag?
tags < > are used so that the browser can distinguish the tags from ordinary text. Tags commands the browser what to do.
What is the structure of an HTML tag?
Opening tag, content, closing tag.
What is an attribute?
Tags can be used in different ways. A picture may be placed in different places on a page and its size may vary. In order for the browser to know where to place the image and for it to know which image to place, we use attributes.
What is the anatomy of an HTML document?
.
Doctype: informs the browser which version of HTML we are using
html tags: says everything in between these two tags is our html page
head tag: contains data about data. Information about the page. important information.
title tag:: defines the title of the web page. Displayed on the top of the web browser.
body tag*: The actual content of the document. Text, images etc.