web and html Flashcards

1
Q

What is the web?

A

Is made of pages and is written in a coding language called html.

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

What is html?

A

acronym: Hyper text markup language

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

What is hyper text?

A

type of text that uses references and links

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

What are servers?

A

They are computers with programs which answer a browser’s requests.

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

What is http?

A

Acronym: Hyper text transfer portal

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

What is the (s) in https?

A

secure; portal

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

What is syntax?

A

Grammar rules for a computer language

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

What is Formalism in coding?

A

It means that computer take code literally.

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

What is Nesting?

A

Bits of code inside other bits of code in an orderly way.

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

What is one resource to use for coding related help?

A

Mozilla Developer Network

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

What is a text file?

A

This contains only letters, numbers, symbols and spaces.

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

what is HTML written in?

A

is written in text

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

What is a markup?

A

Text that has special meaning.

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

What is an Element?

A

It starts and ends with a tag, ex. <em>, </em>

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

What is an opening tag?

A

is the first tag in an element.

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

What is a closing tag?

A

is the last tag of an element.

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

What are angle brackets?

A

are “<,>”

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

What is the meaning of these tags: <em>,</em>?

A

They emphasize the text inside of the tags.

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

What is the meaning of this tag: <br></br>

A

creates a line break.

20
Q

What is the meaning of these tags: <p>,</p>?

A

creates a paragraph break.

21
Q

What is a void tag?

A

is a tag without a pair. ex: “<br></br>”

22
Q

What is the meaning of these tags: ,?

A

these tags move text down.

23
Q

What is the meaning of these tags: ,?

A

these tags move text up.

24
Q

What is the meaning of these tags: <strong>,</strong>?

A

these tags make the words inside it bold face.

25
Q

What is the meaning of these tags:”<h1>through<h6>?

A

these are headings where 1 is the biggest size and 6 is the smallest one.

26
Q

What is the meaning of these tags: <mark>,</mark>?

A

these tags highlight the text inside it.

27
Q

What is a block?

A

is an invisible border created around the text.

28
Q

What are some examples of block elements?

A

<p>,</p>

, <div>,</div> are an example of this type of element

29
Q

What is an inline element?

A

an element that doesn’t create a border around the text.

30
Q

What are some examples of an inline element?

A

<mark>,</mark>, <strong>,</strong>, <em>,</em> are some examples of this type of element.

31
Q

What is the meaning of this element: <div>,</div>?

A

this is short for division, it divides the page into different sections. It is a block element.

32
Q

What is the meaning of this element: <ol>,</ol>?

A

this creates an ordered list, and it uses numbers.

33
Q

What is the meaning of this element: <ul>,</ul>?

A

this creates an unordered list, and it uses bullet points.

34
Q

What is a fully qualified URL?

A

a URL that uses protocol, domain name, and file path.

35
Q

What is the meaning of this element: <a> Example </a>

A

This is an anchor element.

36
Q

What is the meaning of this element: <img></img>

A

This creates an image. “src”= URL of image file, “alt”= text description of image. This is an empty element and does not have a close tag.

37
Q

How to create an image that is also a link?

A

put the img element between the open and close tag of the anchor element.

38
Q

What is a relative URL?

A

this is a file in your computer, and is not a complete URl or an absolute URL.

39
Q

What is a website you can use to validate your html text?

A

validate.w3.org

40
Q

What does CSS stand for?

A

Cascading Style Sheets

41
Q

What is CSS used for/

A

CSS is used to change color of text and the layout of the page.

42
Q

What does DOM stand for?

A

Document Object Model

43
Q

What are the rules of a tree structure?

A
  1. The root starts with a single node, a root, which has no incoming branches. 2. each node can have branches to new nodes. 3. Each non root can have only one incoming branch.
44
Q

What kind of code uses the style (element)?

A

<style>

 p{color:blue} 
</style>

<p> im blue! </p>

45
Q

What kind of code uses the style (attribute)?

A

<p> Im blue </p>