-
What is HTML?
(Hypertext Markup Language) is the code that is used to structure a web page and its content. -
What is HTML used for?
It is a markup language that defines the structure of your content. HTML consists of a series of elements, which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
Html consist of a series of ELEMENTS, which you use to âencloseâ or wrap different parts of the content to make it appear or act in a certain way.
- Why are we learning HTML?
We need to understand how the code works in front end to be able to develop services in back end.
4.What is HTML tag?
Defines the type of element you write.
- What is the âstructureâ of an HTML tag?
Always have a opening <> and end </> tag.
Always have a definition of element Example p=paragraf
Also need a content. Excample
This is content
-
What is an attribute?
Attributes contain extra information about the element that you donât want to appear in the actual content.This is content
Here, class is the attribute name and editor-note is the attribute value. The class attribute allows you to give the element a non-unique identifier that can be used to target it (and any other elements with the same class value) with style information and other things. -
What is the anatomy of an HTML document?