HTML A Beginners Guide Flashcards

(40 cards)

1
Q

what does HTML stand for

A

hypertext markup language

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

what does URL stand for

A

uniform resource locator

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

what is a URL

A

a web address

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

what do URLs start with

A

http://

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

what do URLs end with

A

.com
.net
.edu
.org

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

what is the domain name

A

one part of a URL which helps identify and locate computers on the internet

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

what is a web server

A

a computer, running special software, which is always connected to the Internet

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

where are websites located

A

in directories or folders on the server

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

what does WWW stand for

A

world wide web

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

what is the file extension of a html file

A

.htm or .html

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

what is the index file

A

the main file a web server looks for in a folder

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

what is a web browser

A

a piece of software that runs on your personal computer and enables you to view web pages

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

what is javascript

A

a scripting language designed to give web pages more interactivity than can be achieved through HTML

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

what is a html file

A

a plain text file that has tags

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

what are html tags

A

commands or code used to tell the computer how to display the page content

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

what are attributes

A

additional aspects that you can customize in a tag

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

where are attributes placed

A

after the tag but before the final bracket

18
Q

how does an attributes value appear

A

after an equal sign (=) and is placed within quotation marks

19
Q

where do you place attributes in a tag

A

in the opening tag only

20
Q

how are character entities typed

A

as either a numbered entity or a named entity

21
Q

what do character entities begin with

A

ampersand (&)

22
Q

what do character entities end with

A

semicolon (;)

23
Q

what begins a comment

A

an exclamation mark and two hyphens after the opening bracket

24
Q

what ends a comment

A

two hyphens before the closing bracket

25
what does CSS stand for
cascading style sheets
26
what is a selector
a tag you want to affect using CSS
27
how does a selector appear
a html tag without brackets
28
what do CSS properties do
alter specific attributes of a selector
29
what is a declaration for a selector
specifying values for CSS properties
30
what are The declaration and selector together referred to as
a set of rules or ruleset
31
In the typical ruleset, what is the declaration is enclosed in
curly braces after the selector
32
how does a CSS property appear
tag {CSS property : value;}
33
what is a CSS property followed by
a colon, and then its value
34
what three types of style sheets does CSS provide
inline internal external
35
what are inline style sheets
Styles that are embedded right within the HTML code they affect
36
what are internal style sheets
Styles that are placed within the header information of the web page, and then affect all corresponding tags on a single page
37
what are external style sheets
Styles that are coded in a separate document, which is then referenced from within the header of the actual web page
38
how do inline declarations appear
enclosed in straight quotes using the style attribute of whichever tag you want to affect for example: < tag style="property:value;>
39
how are internal style sheets made
using the < style > tag to contain all the instructions for the page and is placed in the header section
40
what file extension does an external CSS style sheet have
.css