Computer reviewer Lesson 4-7

5.0(1)
studied byStudied by 5 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/30

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.

31 Terms

1
New cards

What are 5 the HTML Basic Tags?

  1. Heading tag

  2. Paragraph tag

  3. Line break tag

  4. Preformatted tag

  5. Horizontal Rule tag

2
New cards

An HTML document has a __________. There are six level of it in HTML.

Headings

3
New cards

What is the syntax/tags of heading? Give one example

<h1> <\h1>

4
New cards

Browsers automatically add one line before and one line after the ______?

Paragraph

5
New cards

What is the syntax/tags of Paragraph?

<p> <\p>

6
New cards

it produces a new line with starting a new paragraph. It does not need open and closing tags because there is nothing in between it.

Line break tag

7
New cards

Syntax/tag of line break

<br/>

8
New cards

It preserves the formatting of the spaces and line breaks of text in HTML document.

Preformatted tag

9
New cards

Syntax of Preformatted tag

<pre> </pre>

10
New cards

It creates a _________ to divide the section of a web page

Horizontal rule tag

11
New cards

Syntax of Horizontal Rule tag

<hr/>

12
New cards

It is a non-Breaking Space. HTML removes the extra spaces in our text in the HTML doccument to add the ______?

&nbsp;

13
New cards

example of &nbsp;

<p> your text &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; your text again <\p>

14
New cards

It used to insert ______ In the HTML source code

Comment tag

15
New cards

What is the syntax of comment tag?

<! - - comments - ->

16
New cards

What are the 7 Formatting tags?

  1. Bold Tag

  2. Strong tag

  3. italic tag

  4. emphasized tag

  5. Superscript tag

  6. Subscript tag

  7. Nested tag

17
New cards

Bold tag syntax

<b>text</b>

18
New cards

Strong syntax

<Strong>text<\strong>

19
New cards

Italic syntax

<i>text<\i>

20
New cards

Empahsized tsg syntax

<em>text<\em>

21
New cards

Superscripted

<sup>text<\sup>

22
New cards

Subscripted

<sub>text<\sub>

23
New cards

Html list tags

  1. Unordered list

  2. Ordered list

  3. Definition list

24
New cards

Unordered list

Syntax: <ul><\ul>

Means: no specific order or sequence.

25
New cards

Ordered list

Syntax: <ol><\ol>

Means: a specific order or sequence

26
New cards

Definition

Syntax:<dl><\dl>

27
New cards

What tags creates hyperlinks on web page?

Anchor<a>

28
New cards

What attribute indicates the URL or the address of the web page or document you are linking to?

Href

29
New cards

What attribute creates a named anchor?

Name

30
New cards

What should be the value of the target attribute so that link can be opened in a new browser?

_blank

31
New cards

What should be the value of href attribute to create an email link ?

-maitto