Intro to Front end Flashcards

1
Q

What is Front End development

A

Mix of PROGRAMMING and LAYOUT that powers the VISUALS and INTERACTIONS of the web.

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

If a website were a house, front end development would be

A

The exterior and/or the host

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

If the website were a car, what would the front and back end be?

A

Front end would be the interior of the car

Back end would be the engine and such.,

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

Role of HTML

A

Markup language. Sets text types.

a markup language is a system for annotating a document in a way that is visually distinguishable from the content. It is used only to format the text, so that when the document is processed for display, the markup language does not appear.

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

Role of CSS

A

Controls formatting and structure, colour and style of the page

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

Role of JS

A

Allow APPLICATIONS and CODE to be written for the page.

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

Why use - and lower case for filenames?

A
  • for filenames. The google search engine treats the hyphen - as a word separator but does not for the underscore _.
    Different things treat spaces and capitals differently. So use all lower case and -.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Basic structure of website folder

A

index.html: This file will generally contain your homepage content, that is, the text and images that people see when they first go to your site. Using your text editor, create a new file called index.html and save it just inside your test-site folder.

images folder: This folder will contain all the images that you use on your site. Create a folder called images, inside your test-site folder.

styles folder: This folder will contain the CSS code used to style your content (for example, setting text and background colors). Create a folder called styles, inside your test-site folder.

scripts folder: This folder will contain all the JavaScript code used to add interactive functionality to your site (e.g. buttons that load data when clicked). Create a folder called scripts, inside your test-site folder.

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