Assignment Questions
-
What is HTML?
Answer:
HyperText Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages.
-
What is HTML used for
Answer:
It is NOT a programming language, it is called a “mark-up” language, it structures a webpage’s content using HTML elements to “enclose” different parts of content to design web-pages.
-
Why are we learning HTML?
Answer:
It is a “knawledge” lol, relatibvely easy to learn, that gives results that can be shown as a demonstration of knowledge; we will learn how to build an application that will interact with smart contracts. This can be understood as two parts, the back ground heavy lifting is the smart contract; the front, the pretty face(Ivan) is the website interacting with the customer.
-
What is an HTML tag?
Answer:
these are hidden keywords in the webpage that provide design instrcutions regarding format and display of content.
-
What is the Structure of an HMTL tag?
Answer:
These are also known as “element names” , they have angled brackets like this <??> with ?? representing the element name. These tags consist of an opening and closing tag, example : < html> and </ html >
-
What is an Attribute?
Answer
It is hidden extra information About an Element.
Element name = < foo >
Attribute name = id
Attribute value = “Foo Fighters” this is your hidden note
So the “Element” is the main man, or the sun, and planets
rotate around it, you know, among a galaxy with other suns in their own space.
Right! “Attributes” are the people drawn towards a charismatic person, or the planets that spin around the sun.
The “Attribute name” is the main man’s/sun’s definition about those people / planets around it ; example:this person “looks confident, looks intelligent, has humour” ;
distinctions about planets " big, small, gasy, rocky, far, close"
"Attribute value" are personal notes, the main man says about the peple round him: " confident but shirt not ironed, intelligent but coffe stains on her skirt, humourous but too loud"
Examples:
Attributes with values:
< foo id=“Foo Fighters” >
Ps. This actually took me a few tries getting, then explaining lol. A stone droped. I thing I learned how
to learn!
7. What is the anatomy of an HTML document?
Answer:
< !DOCTYPE html > Doctype element
it is a very old version of spell /code checker? It checks for basic HTML instruction errors and needs be included
< html > and </ html > html element
this element begins and ends the entire page.
< head > and </ head > head element
it follows after and within the html element, and contains functions that won’t be visible to the viewer : descriptionin search results, CSS to style content and the likes
< body > and </ body > body element
this is content the page viewer will see, videos,games
< meta charset=“utf-8” >
sets the characters in you page to UTF-8 which allows the computer to interpret human language to its own esier.
< title> and </ title> title element
the title displayed in your browser tab like www.safari.com and carries over in bookmarks.