Basic Flashcards

With HTML you can create your own Web site. This tutorial teaches you everything about HTML. HTML is easy to learn - You will enjoy it.

1
Q

What is HTML?

A

HTML stands for Hyper Text Markup Language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

HTML Elements

A

An HTML element is everything between the start tag and the end tag.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The <!DOCTYPE> Declaration

A

The <!DOCTYPE> declaration helps the browser to display a web page correctly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Doctype for HTML5

A

<!DOCTYPE html>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

HTML Images

A

HTML images are defined with the <img></img> tag.

<img></img>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

HTML Links

A

HTML links are defined with the <a> tag.</a>

<a>This is a link</a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

HTML Paragraphs

A

HTML paragraphs are defined with the <p> tag.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

HTML Headings

A

HTML headings are defined with the <h1> to <h6> tags.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

HTML Element Syntax

A

An HTML element starts with a start tag / opening tag
An HTML element ends with an end tag / closing tag
The element content is everything between the start and the end tag
Some HTML elements have empty content
Empty elements are closed in the start tag
Most HTML elements can have attributes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Proper way of closing empty elements in XHTML

A

HTML elements with no content are called empty elements.

<br></br> is an empty element without a closing tag (the <br></br> tag defines a line break).

Tip: In XHTML, all elements must be closed. Adding a slash inside the start tag, like <br></br>, is the proper way of closing empty elements in XHTML (and XML).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Use Lowercase Tags, Why?

A

W3Schools use lowercase tags because the World Wide Web Consortium (W3C) recommends lowercase in HTML 4, and demands lowercase tags in XHTML.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

HTML Attributes

A

HTML elements can have attributes
Attributes provide additional information about an element
Attributes are always specified in the start tag
Attributes come in name/value pairs like: name=”value”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

HTML Lines

A

The <hr>tag creates a horizontal line in an HTML page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

HTML Comments

A

Comments can be inserted into the HTML code to make it more readable and understandable. Comments are ignored by the browser and are not displayed.

Example:
<!-- This is a comment -->

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

HTML Line Breaks

A

Use the <br></br> tag if you want a line break (a new line) without starting a new paragraph.
The <br></br> element is an empty HTML element. It has no end tag.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

<p>
</p>

A

Defines a paragraph.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

<br></br>

A

Inserts a single line break.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q
A

Defines an HTML document.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q
A

Defines the document’s body.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

<hr></hr>

A

Defines a horizontal line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

<!–>

A

Defines a comment.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

class

A

Specifies one or more classnames for an element (refers to a class in a style sheet).

23
Q

id

A

Specifies a unique id for an element.

24
Q

style

A

Specifies an inline CSS style for an element.

25
Q

title

A

Specifies extra information about an element (displayed as a tool tip).

26
Q

Often <strong> renders as <b>, and <em> renders as <i>.</i></em></b></strong>

However, there is a difference in the meaning of these tags

A

<strong> or <em> means that you want the text to be rendered in a way that the user understands as “important”. Today, all major browsers render strong as bold and em as italics. However, if a browser one day wants to make a text highlighted with the strong feature, it might be cursive for example and not bold!</em></strong>

27
Q

<b></b>

A

Defines bold text.

28
Q

<em></em>

A

Defines emphasized text.

29
Q

<i></i>

A

Defines a part of text in an alternate voice or mood.

30
Q

<small></small>

A

Defines smaller text.

31
Q

<strong></strong>

A

Defines important text.

32
Q

A

Defines subscripted text.

33
Q

A

Defines superscripted text.

34
Q

<ins></ins>

A

Defines inserted text.

35
Q

<del></del>

A

Defines deleted text.

36
Q

<code></code>

A

Defines computer code text.

37
Q

<kbd></kbd>

A

Defines keyboard text.

38
Q

<samp></samp>

A

Defines sample computer code.

39
Q

<var></var>

A

Defines a variable.

40
Q

<pre>
</pre>

A

Defines preformatted text.

41
Q

<abbr></abbr>

A

Defines an abbreviation or acronym.

42
Q

<address>
</address>

A

Defines contact information for the author/owner of a document.

43
Q
A

Defines the text direction.

44
Q

<blockquote>
</blockquote>

A

Defines a section that is quoted from another source.

45
Q
A

Defines an inline (short) quotation.

46
Q

<cite></cite>

A

Defines the title of a work.

47
Q

<dfn></dfn>

A

Defines a definition term.

48
Q

A hyperlink (or link)

A

Is a word, group of words, or image that you can click on to jump to another document.

49
Q

HTML Link Syntax

A

The HTML code for a link is simple. It looks like this:

<a>Link text</a>

50
Q

HTML Links - The target Attribute

A

The target attribute specifies where to open the linked document.

The example below will open the linked document in a new browser window or a new tab:

Example

<a>Visit W3Schools!</a>

51
Q

HTML Links - The id Attribute

A

The id attribute can be used to create a bookmark inside an HTML document.

Tip: Bookmarks are not displayed in any special way. They are invisible to the reader.

52
Q

HTML Links - The id Attribute Examples

A

Example
An anchor with an id inside an HTML document:

<a>Useful Tips Section</a>
Create a link to the “Useful Tips Section” inside the same document:

<a>Visit the Useful Tips Section</a>
Or, create a link to the “Useful Tips Section” from another page:

<a>
Visit the Useful Tips Section</a>

53
Q

Basic Notes - Useful Tips

A

Note: Always add a trailing slash to subfolder references. If you link like this: href=”http://www.w3schools.com/html”, you will generate two requests to the server, the server will first add a slash to the address, and then create a new request like this: href=”http://www.w3schools.com/html/”.

54
Q

<a></a>

A

Defines a hyperlink