Module 1 Flashcards
To make the text bold you would use the… HTML tag.
<strong></strong>
What are elements in HTML?
Tag + content.
How the browser knows that a document is a webpage?
By the <!DOCTYPE html> declaration at the top of the document.
Is <!DOCTYPE html> a tag?
No. It’s a declaration.
What is the first tag of a webpage?
<html></html>
Which one of the following is an element?
- <p>This is a paragraph.</p>
- <p>
</p> - </p>
- This is a paragraph.
- <p>This is a paragraph.</p>
What CLI stands for?
Command-line interface.
How spaces are represented in URLs?
%20
What is character encoding?
A system where numbers, letters, etc. are represented by codes.
What is a character set?
The collection of all characters used by a language.
What ASCII stands for?
American Standard Code for Information Interchange.
What Unicode stands for?
Unique, Universal, and Uniform character enCoding.
How is called the numerical value assigned to a specific character?
Code point.
What UTF stands for?
Unicode Transformation Format.
What is UTF?
A character encoding format that is able to utilize all of the code point in Unicode.