WEB DESIGN Flashcards

1
Q

What is the process of deploying a web application built locally?

A
  • Prepare code dependences
  • Select a hosting enviroment
  • Transfer your code to the hosting enviroment
  • Set up your application infastructure
  • Take security measures for the application
  • Test the application
  • Maintain the application
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is php and what are the tools needed to develope in php?

A

PHP is a server-side scripting language used in web development.

Tools:
* Text editor
* Web server
* Php interpreter
* Development enviroment

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

What are the new form elements added in HTML 5?

A

Inputs of type:
* date
* number
* search
* email

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

How is the meta tag written?

A
<meta charset="utf-8" />

the char set attribute determines the character encoding of the web page.

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

What are the HTML tags that support media?

A
<img />
 <video></video>
 <audio></audio>
 <iframe></iframe> or <embeded></embeded>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an HTML canvas?

A

It is an html elements that provides a drawing surface for the dynamic rendering of graphics and animiaitons using js. It has a default border width of 0px

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

Differenciate between CSS and CSS3

A

CSS is a stylesheet language used to modify the appearance of html elements on a web page.
CSS3 is the latest version of CSS with new features, selectors and properties

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

What is the difference between onload and ondocumentready?

A

Onload triggers an event when the entire web page include its resources are loaded

ondocumentready triggers an event when the DOM has been parsed and is ready for manipulation

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