Implementation - Web Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

CSS stands for

A

Cascading Style Sheets

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

HTML stands for

A

HYper Text Markup Language

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

CSS is used for

A

styling a webpage and how html elements should be displayed

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

HTML is used for

A

creating a webpage

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

Javascript is used for

A

adding interactivity to webpages

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

what are the CSS selectors

A

selector - html tag followed by a {
this creates a rule
the rule is finished when } is put in

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

inline css

A

css is used in the html element

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

internal css

A

css used in the page that is being styled

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

external css

A

kept on a seperate style sheet

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

advantages of external stylesheets

A

-insures consistency
-changes needs to be made only once
- improves load times as it only needs to be downloads once

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

classes

A

can be styled with a dot .
styles applied to multiple html tags

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

ids

A

can be styled with a hash #
can only be applied to 1 tag

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

opening and closing

A

<>

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

audio

A

<audio>
<source src= \_\_\_\_\_ type="audio/">
</audio>

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

video

A

<video>
<source></source>
</video>

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

lists

A
  • unordered lists <ul>
    -ordered lists <ol>

items in lists <li>

17
Q

DIVs are used

A

to split the html code into sections

18
Q

hyperlinks

A

-internal (same page within the same website)
-external (other webpage on a different website)

19
Q

addressing

A

absolute (absolute URL) -shows the complete address/ points to an external website. Gives the entire path to that file

relative (relative URl0 only shows a partial address. Points to a page within the same website. SHows where file is relative to the current location to the website.

20
Q

two javascript events are

A

onmouseover - triggered when the mouse passes over it

onmouseout-triggered when the mouse goes out of it