Week 9 - HTML

0.0(0)
studied byStudied by 1 person
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/35

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

36 Terms

1
New cards

Hyper Text Markup Language

What does HTML stand for?

2
New cards

Tim Berners-Lee

He was a comp scientists at CERN. He developed HTML and the first web browser called Worldwide Web.

3
New cards

Worldwide Web

What was the name for the first web browser?

4
New cards

HTML

This is a markup language for describing web document

5
New cards

Web documents

These are also called web pages.

6
New cards

Markup Language

This is a set of markup tags.

7
New cards

HTML tags

HTML documents are described through these, each of these describes different document content.

8
New cards

HTML

This is known as HTML 1.0. It provided basic structural elements and allowed for the inclusion of hyperlinks.

9
New cards

HTML 2.0

This version of HTML expanded the range of supported elements and introduced tables for tabular data.

10
New cards

HTML 3.2

This version of HTML brought further enhancements to tables, introduced forms for user input, and provided support for basic stylesheets.

11
New cards

HTML 4.01

This introduced CSS for improved control over page styling, It also enhanced support for scripting and multimedia elements.

12
New cards

XHTML

This is known as Extensible Hypertext Markup Language, and is aimed to combine HTML with the stricter rules and extensibility of HTML.

13
New cards

HTML 5

This introduced a wide range of new elements and attributes improved multimedia support, and provided better compatibility with mobile devices. They also embraced semantic markup and introduced features for responsive design.

14
New cards

<!DOCTYPE html.

What declaration defines that this document is an HTML5 document?

15
New cards

<html>

This element is the root element of an HTML page.

16
New cards

<head>

This element contains meta information about the HTML page.

17
New cards

<title>

This element specifies a title for the HTML page (which is shown in the browser’s title bar or in the page’s tab)

18
New cards

<body>

This element defines the document’s body and is a container for all visible contents.

19
New cards

<h1>

This defines a large heading

20
New cards

<p>

This defines a paragraph

21
New cards

True

Can HTML elements be nexted? True or false?

22
New cards

Empty Elements

These are HTML elements with no content.

23
New cards

<br>

This tag defines a line break, and is an empty element without a closing tag.

24
New cards

False

HTML can be case sensitive. True or false?

25
New cards

True

HTML will only be case sensitive for stricter document types like XHTML. True or false?

26
New cards

HTML Attributes

All HTML elements can have ___. These provide additional information about elements, and are always specified in the start tag. 

27
New cards

<a>

Which tag in the href attribute defines the hyperlink?

28
New cards

Href

This attribute specified the URL of the page the link goes to.

29
New cards

<img>

This tag is used to embed an image in an HTML page.

30
New cards

src

This attribute specifies the path to the image to be displayed.

31
New cards

Absolute URL

This links to an external iamge that is hosted to another website. 

32
New cards

Relative URL

This links to an image that is hosted within the website.

33
New cards

Alt

What attribute is required for the img tag as it specifies an alternate text for an image?

34
New cards

Style

This attribute is used to add styles to an element.

35
New cards

Lang

This attribute declares the language of the web page. This is meant to assist search engines and browsers.

36
New cards

Title

This attribute defines some extra information about an element, it will be displayed as a tooltip when you mouse over the element.