Web Design Flashcards

1
Q

What are search engines?

A

They are websites which allow you to search up certain words and it gives you websites which may relate to your search

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 Location

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
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
4
Q

What kind of brackets does HTML use?

A

Triangular brackets (<>)

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

How do you add bullet points in HTML?

A

You start with <ul>,then for every thing you list you open and close with <li> </li> and finish the list with </ul>.

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

What does a HTML bracket have at the end to symbolise its finish?

A

It will have a slash to close it. Example: <p> Hello </p>

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

How do you add a numbered list in HTML?

A

You start with <ol>, then for every thing you list you open and close with <li> </li> and finish the list with </ol>.

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

What does <p> </p> mean?

A

Paragraph

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

What does <body> </body> tag mean in HTML?

A

It defines the body of the code.

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

What does <h1> up to <h6> mean?

A

Headings

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

What does CSS mean?

A

Cascading Style Sheets

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

What is the biggest heading?

A

<h1>
</h1>

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

What is the smallest heading?

A

<h6>
</h6>

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

What does <style> </style> mean?

A

It allows you add code which changes the look of your text and page (eg - background colour, font family)

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

What is <br></br>

A

Line break

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

What is <img src = “…”>?

A

Inserts an image

17
Q

What kind of brackets do CSS use?

A

Curly brackets {}

18
Q

What is <a href=”…….”(word)</a>?

A

Inserts a hyperlink to a piece of text you choose, which takes you to another website when clicked on.

19
Q

Example - how would you change your paragraph text colour to blue?

A

p{color:blue}

20
Q

What does <li> </li> do?

A

Defines that something is part of a list (ordered or unordered)

21
Q

What does {text-align:center} do?

A

Aligns the text to the center

22
Q

What does {font-family:Helvetica} do?

A

Changes the font family to Helvetica.

23
Q

What are advantages to coding your own website?

A

You can control everything on your page

You learn the basics of all web development

24
Q

What are disadvantages to coding your own website?

A

Page looks less professional and modern

You need to understand HTML and CSS (and learn Javascript for fancier things)

25
Q

What does {font-size:24px} do?

A

Changes the font size to 24 pixels.

26
Q

What does {color:blue} do?

A

Changes the colour of something to blue.

27
Q

What does {background-color:yellow} do?

A

Changes the background colour to yellow.

28
Q

What are advantages to using a website builder?

A

You can make a professional looking page

You can have lots of interactive features and different types of media

No coding skills required

29
Q

What are the disadvantages to using a website builder?

A

You don’t learn any coding skills.

The free version will be supported by ads.