HTML Flashcards
When did HTML become public?
1991
Who invented HTML?
Tim Berners-Lee
HTML is a programming language. True or False?
False. It is a primary/markup language. Not considered a programming language.
HTML is used for what?
Used to describe the structure of a webpage.
What is DTD
Doctype declaration.
What is DTD for?
a declaration that identifies its type.
What do you call the text and images on a website?
Website content
What is Website structure?
It is how the content of a website is organized.
What is the basic structure?
DTD - html - head - body
What is a software bug?
An error or a flaw in a computer program. A code that does not go as expected.
What is debugging?
The process of removing or fixing the bugs.
b is for bold text. True or false
true
What element do you use for important text?
strong
What element do you use for emphasized text?
em
i is for italic text. True or false?
True
sub is for superscript text. True or false?
False
what do you use for superscript text?
sup
what do you use for deleted text?
del
When you use ol , it comes out as bulleted form. True or false.
False
li is list. True or false?
False. li is list item
what do you use for unordered list?
ul
what do you use to insert an image?
img
Does img have an end tag?
No
What attributes can you put in img tag? List at least 2 attributes.
src
alt
width
height
What is px?
pixel
Define pixel.
A unit of digital image length.
How do you insert a link in a webpage?
a
what is a (a tag)?
anchor element
what attribute is needed for a to function?
href
What do you put in href?
the url or link
What do you put in src attribute?
the link or address of the image.
What is the common with src and href?
They both are necessary. You have to put a link/url to the attributes.