HTML A Beginners Guide Flashcards

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
Q

what does CSS stand for

A

cascading style sheets

26
Q

what is a selector

A

a tag you want to affect using CSS

27
Q

how does a selector appear

A

a html tag without brackets

28
Q

what do CSS properties do

A

alter specific attributes of a selector

29
Q

what is a declaration for a selector

A

specifying values for CSS properties

30
Q

what are The declaration and selector together referred to as

A

a set of rules or ruleset

31
Q

In the typical ruleset, what is the declaration is enclosed in

A

curly braces after the selector

32
Q

how does a CSS property appear

A

tag {CSS property : value;}

33
Q

what is a CSS property followed by

A

a colon, and then its value

34
Q

what three types of style sheets does CSS provide

A

inline
internal
external

35
Q

what are inline style sheets

A

Styles that are embedded right within the HTML code they affect

36
Q

what are internal style sheets

A

Styles that are placed within the header information of the web page, and then affect all corresponding tags on a single page

37
Q

what are external style sheets

A

Styles that are coded in a separate document, which is then referenced from within the header of the actual web page

38
Q

how do inline declarations appear

A

enclosed in straight quotes using the style attribute of whichever tag you want to affect

for example: < tag style=”property:value;>

39
Q

how are internal style sheets made

A

using the < style > tag to contain all the instructions for the page and is placed in the header section

40
Q

what file extension does an external CSS style sheet have

A

.css