1.3.4 Web Technologies Flashcards

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

1.3.4 A)
What is HTML

A

Script/language that web pages are written in. HTML allows a browser to interpret and render a webpage

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

1.3.4 A)
How to open and close HTML tags

A

<tag> open
</tag>

close

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

1.3.4 A)
What do the HTML code mean ?

<html>
<body>
<link></link>
<head>
<title>
<h1> , <h2>
<p>
</p></h2></h1></title></head></body></html>

A

1 ) all code in these tags is intrepreted by html
2) defines the content for main content
3) add links
4) defines brower tab or heading
5) defines text that appears in tab or heading
6)head style in v size
7)defines a para there will be space above and below

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

1.3.4 A)
What do the HTML code mean ?
<img></img>
<a></a>

<ol> / <ul>
<div>
</div></ul></ol>

A

1) self closing no need for </img>. <img></img>
2) hyper link
<a> abc link </a>
3) order list is ol , underorder list ul, elements of list defined with <li>
4) divides page into seperate areas refered by unique name <div id = "page" >

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

1.3.4 A)
What are classes and identifier in terms of webpages

A

attributes given to elements on a webpage which you wish to style

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

1.3.4 A)
Whats the diff between class and identifiers

A

multiple elements across web pages can be assigned to a certain class can be defined within the head of the class or within css style sheet. class defined by full stops

only one element can be associated with a particular indentifier defined w/ a hastag

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

1.3.4 A)
What is CSS

A

cascading style sheet is a language used to describe the style of a webpage. CSS can be used to specify how elements work

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

1.3.4 A)
What are the two types of css

A

Internal/embedded or external

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

1.3.4 A)
what is Internal/embedded style sheet

A

placed inside the style tags and is directly entered directly into HTML doc

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

1.3.4 A)
What is external style sheet
How to link external

A

written in a seperate document and a link to this style sheet is added to HTML doc
<link href =”nameofsheet.css” rel =”stylesheet” type =”text/css”

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

1.3.4 A)
syntax for css

A

body
{
margine: 0px;
padding: 0px;
backround-color: white;
font-family: x;
font-size: 18px;
text=align: centre;
}
Each sections of css begins with the name of the class/indentifier or elements to be styled follwed by curly brackets within which attributes of the elements are defined

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