Advanced Flashcards

1
Q

What are some necessities of form elements?

A

-> Form elements like checkboxes, input fields e.t.c
-> labels and placeholders for input fields
-> buttons for form submission
-> Validation rules
-> Error handlind

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

What is a frame set?

A

It is a way of dividing a web page into multiple sections allowing it to display multiple webpages in the same widow?

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

How do you create a frame set?

A
<frameset cols="10, *">
<frame src="filename.html" name="sectionname">
<frame src="filename.html" name="sectionname">
<frame src="filename.html" name="sectionname">
</frameset>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the form elements that support media in html?

A

<audio>, <video>, <img></img>, <canvas>, <embeded>
</embeded></canvas></video></audio>

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

How can you optimize page loading time?

A

-> Compressing the images on the pages
-> Reducing the code size
-> Distributing content across multiple servers
-> Storing frequently used data on the browser using local storage
-> Utilizing lazy loading

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