Chapter 24 - HTML and CSS Flashcards

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

HTML

A

HTML (Hypertext Markup Language) is the script/language that web pages are written in - describing the content and structure of the web page which a browser can interpret/present to the viewer

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

CSS

A

CSS is a scripting language similiar to HTML that is used to describe the layout and styles of a web page - styles can be applied to existing HTML elements

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

HTML element

A

<p> Something </p>

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

Opening tag/closing tag

A

Opening tag: <p>
Closing tag: </p>

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

HTML attribute

A

specifies various additional properties to the existing HTML element

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

<html>
</html>

A

All code within these tags is interpreted as HTML

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

<body>
</body>

A

Defines the content in the main browser content area

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

<head>
</head>

A

Defines the tab/window heading area

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

<title>
</title>

A

Defines the text that appears within the tab/window heading area

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

<h1>, <h2>, <h3>
</h3></h2></h1>

A

Heading styles in decreasing sizes

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

<p>
</p>

A

A paragraph seperated with a line space above and below

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

<img></img>
alt

A

Self closing image tag with parameters
<img src = location, width=”x”,height = “y”>
If image is unavailable, alt signifies alternative text that will show

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

<a></a>

A

Anchor tag defining a hyperlink with location parameter
<a> Link text </a>

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

<ol>,<ul>
</ul></ol>

A

Defines an ordered (numbered) or unordered (bulleted) list

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

<li>
</li>

A

Defines an individual list item within either a numbered or bulleted list

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

<div>
</div>

A

The <div> tag facillitates the division of a page into seperate areas, each of which may be referred to uniquely by name, and styled differently using CSS.