HTML Basics 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

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>
 
 
  or 
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
9
Q

What does W3C stand for?

A

World wide web consortium

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

what are two software you can use to type html?

A

Visual Studio Code
Sublime text

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

What type of storage engine does My SQL support?

A

InnoDb
MyISAM
Merge
CSV
Black hole

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

What are HTML tags? name two single tag elements.

A

The HTML components are used to define the structure and content of a web page.

<hr></hr>

<br></br>

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

Differentiate between a web page and a web document.

A

A web page is a single HTML file on the internet that is part of a larger website.

A web document is an electronic document stored on a website

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

What are the common list used in web page design?

A

Unordered, Ordered, Definition, Description and menu list

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