Structures and links (Web-based) Flashcards

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

What is a website?

A

A website is a group of web pages that are linked together

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

What are the simplistic models of how pages can be organised in a website called?

A

Linear and Hierarchical

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

Name and explain 5 Navigational aids?

A

History - List of all nodes or links that have been visited
Breadcrumbs - A trail which can lead the user to where they started
Highlighting - Hyperlinks change colour once they have been clicked to show path taken.
Backtracking - Use of a back button to go to previous page
Bookmarks - A list of pages that have been selected by the user

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

HTML code breaks a document into two main sections called what?

A

Head and body

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

The head section contains what?

A

Metadata which is data that describes the document

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

The title is a compulsory part of a document as it identifies what?

A

The documents name

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

What is contained in the body element of html code?

A

All other information, anything that the creator wishes to be displayed on the web page

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

What is CSS and what does it stand for?

A

CSS stands for Cascading Style Sheets and they define how different elements of a web page are to be displayed

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

What are the advantages of CSS?

A
  • The layout of many documents or an entire website can be controlled from one style sheet. therefore reducing the amount of code required for formatting.
  • The developer gets a more precise control over layout than using html tags
  • The developer can apply different layouts to different media types, screen or print
  • Several different stylesheets can be used to change the look of a site according to users preferences
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How does CSS ensure that the user is always viewing the website correctly?

A

CSS can create rules for different devices that have different screen widths so that the website will display slightly different on each device.

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

Explain what a CSS rule is made up of?

A

A CSS rule is made up of a selector(Which identifies the part of the html page affected) followed in by a declaration. the declaration consists of one or more attributes and the value of each attribute.

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

What are the 3 main types of selector and explain?

A
  • Element Selector = directly affects the html tag of the same name
  • ID selector = will only affect an html tag where the ID attribute matches the text following the #
  • Class selectors = Will only apply to html tags where the class attribute matches the text following the full stop.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is meant by responsive web design?

A

This is where the designer create a web site that are not only accessible but can re adjust to best suit the device the user is using

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

What does Metadata contain?

A

Contains descriptions of the page contents as well as keywords linked to that content.

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

How are keywords and page contents expressed?

A

Expressed ad meta tags.

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

What is a static web page?

A

A static web page is one that does not change every time it is loaded.

17
Q

What is a dynamic web page?

A

A dynamic web page is a web page that displays different content each time it is viewed.

18
Q

What is a database driven website?

A

A database driven website is ne that pulls information from a database each time that it is loaded.

19
Q

What is an interactive web page?

A

An interactive web page is one that the user can interact with.