What is HTML?
HTML is a markup language that defines the structure of your website, paragraphs, headers and so on.
What is HTML used for?
HTML is used to structure a web page and its contents
Why are we learning HTML?
I didn’t see the answer in the article, but from all the previous material, it seems important to learn HTML
- As a foundation for learning JS, C++ and on to programming smart contracts
- There is no point in programming smart contracts if we have no way for others to access them! Therefore it is important to be able to build a coherent front end as well as the back end.
What is an HTML tag?
A tag is the portion of an element that defines it. Some tags have open and closing tags in order to create the completed element, other tags are open, like the <img tag used to embed images.
What is the structure of an HTML tag?
From what I understand, most tags are structured as follows, , there are other elements that don’t have the closing part, and can look like this <example content=”hello world”>
What is an attribute?
An attribute is information that you don’t want to appear in the final rendering, but gives value to an element, such as giving a name to a class for later stylization.
What is the anatomy of an HTML document?
At the very top, the doctype is defined
Next is the which wraps the entire document
Then there is the header which contains the meta charset and title
Outside the header there is the body of the document