HTML ESSENTIAL TRAINING Flashcards
What is HTML?
HyperText Markup Language - the standard markup language for documents designed to be displayed in a web browser. It is a skeleton of a web. It can be assisted by technologies such as CSS and JS.
What is HTML?
HyperText Markup Language - the standard markup language for documents designed to be displayed in a web browser. It is a skeleton of a web. It can be assisted by technologies such as CSS and JS.
What is the role of HTML?
HTML marks up the content of a site. It tells the user’s computer what thins are. It provides access to the functionality built into the browser.
From which programming languages the web is made of?
HTML, CSS, and JavaScript.
Why does the Web use multiple programming languages?
The web is different than other types of software. You can code the website today and expect that it will still work in five years or 10 years, without any updates. Your code can easily work on an old computer or an old browser from 10 years ago. The web can run on Mac, Android, iOS, Linux, game consoles, watches, televisions, Ebook readers, etc. The web was invented to provide the way to share the content, even when our computers are different from each other.
What is a functionality of HTML?
There is no programming logic, loops, functions. HTML Is a declarative language. It’s all vocabulary.
Why is web or browser programming broken up into three parts?
to be resident to changes in technology
Which is the most powerful and fragile of the browser programming languages?
JavaScript
What happens when HTML is broken because of a bug in the code?
The browser guesses what you meant, and does its best to fix the bug itself.
What is a tag in HTML? Give an example
HTML tags are the keywords which define how web browser will format and display the content. The example:
stands for paragraph.
Give an example of opening and closing tags in HTML.
- opening tag
- closing tag
Hello, I am a paragraph
What is HTML element?
An HTML element is an individual component of an HTM document. It represents semantics, or meaning. For example, the title element represents the title of the document. Most HTML elements are written with s tart tag (or opening tag) and an end tag (or closing tag), with content in between.
Why is it important to use a closing tag and make sure all the content we want is written before it, and not after it?
Anything that comes after the closing tag will be displayed on the same HTML page, but it will be understood by the browser to be outside of this article. It’s after the article. It matters where we open and we close out HTML tags, and how we nest elements inside of each other. We use this to convey meaning about content and interfaces. One of the easiest mistakes in HTML you can make is to forget to include the closing tag.
This is a headline
This is paragraph
This is second paragraph
This is third…
What is the opening and closing tag for a paragraph?
What are the six headlines?
,
,
,
,
,
######
What is the hierarchy of headlines starting from the biggest to the smallest?
,
,
,
,
,
######
Which tag is used to apply visual-only italics?
Which tag is used to apply emphasis italics?
Which tag conveys importance, seriousness, urgency?
What tag conveys bold?
What are the four elements that we have to mark up text to be italicized or bolded, and which of them convey a certain meaning, and which - a human language reason for the bold or italic?
What are the types of lists in HTML?
Unordered list Ordered list Definition lists
Give me the example of the unordered list.
- Dogs
- Cats
- Parrots
- Hamsters
Give me the example of the ordered list.
- Dogs
- Cats
- Parrots
- Hamsters
- term
- definition
- additional definition
- second term
- definition of second term
- third term
- definition of third term
- term
- definition
- additional definition
- second term
- definition of second term
- third term
- definition of third term
