General Flashcards

(60 cards)

0
Q

Define HTML5

A

More lacks than the other markup languages, new features: new elements(),full css3 spprt, 2d/3d graphics, SQL db,new attributes, video & audio, canvas, local strg, web applications, support all major browsers, application cache, web worker-JavaScript

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

Define semantic

A

Giving words meaning..

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

Define block level elements

A

Requires there own line…

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

What is a span element

A

Single line elements<span></span>

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

Define <a>anchor tag</a>

A

Allows u to jump to other websites are other web pages<a></a>

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

Define <img></img>tag structure

A

<img></img>

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

Define “legend”

A

Point or focus one to input field

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

Define “fieldset”

A

Use to group related inputs

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

Purpose of a “label”

A

To focus in on the input

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

What the different between “Get & Post” Method?

A

The Get has a query Post does not..security issues

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

Define Dynamic

A

Web pages that respond to user request through buttons or other kinds of controls

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

Define DHTML

A

Refers to a combinations of technologies that make web pages dynamic.. A combination of JavaScript ,XHTML, CSS , and the DOM

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

Define attribute

A

Adding additional info

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

What is the “src”

A

Tells the browser where it can find the image file

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

Define the “alt” attribute

A

This provides a text description of the image which to describe image if you cannot see it

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

Explain “ title “attribute

A

Used to provide additional information about the image… When the mouse hooves over the image a tool tip is provided

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

How are links created

A

By using the <a>tag..</a><a></a>

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

What is a relative URLs description

A

I

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

Relative link type “ same folder”structure/layout

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

Relative link type “child folder”structure/layout

A

<a></a>

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

Relative link type “parent folder”structure/layout

A

<a></a>

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

Relative link type “grandparent folder”structure/layout

A

<a></a>

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

How do you write a link

A

<a>IMBD</a>

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

Define the <a> tag “href” attribute</a>

A

The page that you want people to go to when they click on the link

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
The define the universal selector * { }
Targets all the elements on the page
25
Defining the" type "selector
Targets a particular tag (eg H1 H2and H3 element) | H1, h2, h3 { }
26
Define the" class "selector .note { }
Target any element whose class attribute has a value of .note { }
27
The find the ID selector #introduction { }
Targets the elements who's ID attribute has a value of introduction
28
Define the child selector . | li>a { }
29
Explaining the descendent selector. | P a { }
30
Define the adjacent sibling selector. | H1+p { }
Target the first

elements after any

elements but not other

elements

31
Defined the general sibling selector. | H1~p { }
If you had two

elements that are sibling of an

element. This rule would apply to both

32
Define DOCTYPE
It tells the browser which version of HTML pages using
33
What is the symbol
Comment symbol
34
What is a element
Opening & closing tags | +content =Element
35
Define non semantic
Elements w meaningWords w/o meaning
needs & to make sense out of the div tag
36
Relative link type "grandchild folder"structure/layout
37
How do u link style sheets
38
Define "class"
Allows it to be added to many tags identifiers on a web page....more general
39
Define "div"
Allow only one unique identifier name adding per web page ...more specific
40
Define a css rule
It's has a selector & declaration | P { font-family: Arial; }
41
Explain selector
Indicate which element the rule applies to
42
Purpose of a declaration
Indicates how the elements referred to in the selector should be styled
43
What is properties
Indicate the aspects of the element you wants to change
44
Define values
Specify the setting you want to use for the chosen properties
45
Defined relative positioning
This moves an elements from the position it would be in the normal flow shifting it to the top ,right ,bottom, or left of where it would have been placed
46
Define absolute positioning
This positions the elements in relation to its containing element
47
Define fixed positioning
This is a form of absolute positioning that position element in relations to the browser window as opposed to the containing element
48
Define floating elements
Floating element allows you to take that element out of normal flow and position it to the far left or right of a containing box
49
Explain "Z-index"
When you move any element from the normal flow ,boxes can overlap the blank property allows you to control which box appears on top
50
Differences between display:none & visibility:hidden
Display "none "removes element, and remove space..,visibility"hidden" mask a element, but preserve the space...
50
Explain "rel" attribute
Specifies the relationship between the HTML page and the file It is link to
51
What is the "href "attribute
This specifies the path to the CSS file
52
What is the "type" attribute
Specifies the type of document being link to ( text/css)
53
explain
Use the place CSE's rules within an HTML page by placing them inside the style element... Which sits inside the head element
54
How do a browser determine specificity
Tag 1pt,class 10pts,ID 100pts, inline styles 1000pts
55
What is clear
The clear property allows you to say that no element (within the same containing element )to touch to left or the right hand side of the box
56
Define z-index
When you use relative ,fixed, or absolute positioning boxes can overlap
57
A site success
``` 1-objective 2-content 3-usability 4-aesthetics 5-accessibility 6-development ```
58
What is border box
An element that shrink the container inward