Skip to content

Commit cfa02eb

Browse files
committed
Update README.md
1 parent c0070c6 commit cfa02eb

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

README.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,66 @@
1010

1111
<br/>
1212

13+
| 01.|[Does localStorage throw error after reaches maximum limits?](#q-does-localstorage-throw-error-after-reaches-maximum-limits)|
14+
| 02.|[What are the new form elements in HTML5?](#q-what-are-the-new-form-elements-in-html5)|
15+
| 03.|[What is the DOM? How does the DOM work?](#q-what-is-the-dom-how-does-the-dom-work)|
16+
| 04.|[How does the browser rendering engine work?](#q-how-does-the-browser-rendering-engine-work)|
17+
| 05.|[What does a `<DOCTYPE html>` do?](#q-what-does-a-doctype-html-do)|
18+
| 06.|[What happens when DOCTYPE is not given?](#q-what-happens-when-doctype-is-not-given)|
19+
| 07.|[What is the difference between standards mode and quirks mode?](#q-what-is-the-difference-between-standards-mode-and-quirks-mode)|
20+
| 08.|[What is difference between HTML and XHTML?](#q-what-is-difference-between-html-and-xhtml)|
21+
| 09.|[What are the building blocks of HTML5?](#q-what-are-the-building-blocks-of-html5)|
22+
| 10.|[Describe the difference between a `cookie`, `sessionStorage` and `localStorage`?](#q-describe-the-difference-between-a-cookie-sessionstorage-and-localstorage)|
23+
| 11.|[What is Critical Rendering Path?](#q-what-is-critical-rendering-path)|
24+
| 12.|[What are the Benefits of Server Side Rendering (SSR) Over Client Side Rendering (CSR)?](#q-what-are-the-benefits-of-server-side-rendering-ssr-over-client-side-rendering-csr)|
25+
| 13.|[What is the difference between a `<span>` and a `<div>`?](#q-what-is-the-difference-between-a-span-and-a-div)|
26+
| 14.|[Name 5 common block-level and inline HTML elements?](#q-name-5-common-block-level-and-inline-html-elements)|
27+
| 15.|[What are semantic and non-semantic elements?](#q-what-are-semantic-and-non-semantic-elements)|
28+
| 16.|[What is the purpose of `main` element?](#q-what-is-the-purpose-of-main-element)|
29+
| 17.|[Define semantic markup. What are the semantic meanings for `<section>, <article>, <aside>, <nav>, <header>, <footer>` and when/how should each be used in structuring html markup?](#q-define-semantic-markup-what-are-the-semantic-meanings-for-section-article-aside-nav-header-footer-and-when-how-should-each-be-used-in-structuring-html-markup)|
30+
| 18.|[When should you use `section`, `div` or `article`?](#q-when-should-you-use-section-div-or-article)|
31+
| 19.|[What is Character Encoding?](#q-what-is-character-encoding)|
32+
| 20.|[What is the purpose of meta tags?](#q-what-is-the-purpose-of-meta-tags)|
33+
| 21.|[What does async and defer refer in script tag? Describe the difference between `<script>`, `<script async>` and `<script defer>`](#q-what-does-async-and-defer-refer-in-script-tag-describe-the-difference-between-script-script-async-and-script-defer)|
34+
| 22.|[Can you describe the difference between progressive enhancement and graceful degradation?](#q-can-you-describe-the-difference-between-progressive-enhancement-and-graceful-degradation)|
35+
| 23.|[What is the purpose of cache busting and how can you achieve it?](#q-what-is-the-purpose-of-cache-busting-and-how-can-you-achieve-it)|
36+
| 24.|[Name 3 ways to decrease page load?](#q-name-3-ways-to-decrease-page-load)|
37+
| 25.|[What ARIA and screenreaders are, and how to make a website accessible?](#q-what-aria-and-screenreaders-are-and-how-to-make-a-website-accessible)|
38+
| 26.|[What is the purpose of the `alt` attribute on images?](#q-what-is-the-purpose-of-the-alt-attribute-on-images)|
39+
| 27.|[Explain some of the pros and cons for CSS animations versus JavaScript animations?](#q-explain-some-of-the-pros-and-cons-for-css-animations-versus-javascript-animations)|
40+
| 28.|[What does CORS stand for and what issue does it address?](#q-what-does-cors-stand-for-and-what-issue-does-it-address)|
41+
| 29.|[Ways to improve website performance](#q-ways-to-improve-website-performance)|
42+
| 30.|[Comparison of browsers engines like Chrome, Firefox, Internet explorer, Safari?](#q-comparison-of-browsers-engines-like-chrome-firefox-internet-explorer-safari)|
43+
| 31.|[What does the lang attribute in html do?](#q-what-does-the-lang-attribute-in-html-do)|
44+
| 32.|[What is desktop first and mobile first design approach?](#q-what-is-desktop-first-and-mobile-first-design-approach)|
45+
| 33.|[What are `data-` attributes good for?](#q-what-are-data-attributes-good-for)|
46+
| 34.|[Explain the difference between layout, painting and compositing?](#q-explain-the-difference-between-layout-painting-and-compositing)|
47+
| 35.|[Explain about HTML Canvas?](#q-explain-about-html-canvas)|
48+
| 36.|[Explain about HTML Layout Engines used by browsers?](#q-explain-about-html-layout-engines-used-by-browsers)|
49+
| 37.|[What are the semantic tags available in html5?](#q-what-are-the-semantic-tags-available-in-html5)|
50+
| 38.|[Why you would like to use semantic tag?](#q-why-you-would-like-to-use-semantic-tag)|
51+
| 39.|[How to make page responsive?](#q-how-to-make-page-responsive)|
52+
| 40.|[What is difference between `span` tag and `div` tag?](#q-what-is-difference-between-span-tag-and-div-tag)|
53+
| 41.|[What are optional closing tag?](#q-what-are-optional-closing-tag)|
54+
| 42.|[What is a self closing tag?](#q-what-is-a-self-closing-tag)|
55+
| 43.|[Does the following trigger http request at the time of page load?](#q-does-the-following-trigger-http-request-at-the-time-of-page-load)|
56+
| 44.|[How Geo-location API works in html5?](#q-how-geo-location-api-works-in-html5)|
57+
| 45.|[What is difference between SVG and Canvas?](#q-what-is-difference-between-svg-and-canvas)|
58+
| 46.|[Explain Drag and Drop in HTML5?](#q-explain-drag-and-drop-in-html5)|
59+
| 47.|[Why to use IndexedDB instead of WebSQL in HTML5?](#q-why-to-use-indexeddb-instead-of-websql-in-html5)|
60+
| 48.|[Explain Application Cache in HTML5. OR What is a manifest file in HTML?](#q-explain-application-cache-in-html5-or-what-is-a-manifest-file-in-html)|
61+
| 49.|[Explain Microdata in HTML5?](#q-explain-microdata-in-html5)|
62+
| 50.|[List the API available in HTML5?](#q-list-the-api-available-in-html5)|
63+
| 51.|[What are different new form element types provided by HTML5?](#q-what-are-different-new-form-element-types-provided-by-html5)|
64+
| 52.|[What are the HTML tags which deprecated in HTML5?](#q-what-are-the-html-tags-which-deprecated-in-html5)|
65+
| 53.|[How you can Use Modernizr in HTML5?](#q-how-you-can-use-modernizr-in-html5)|
66+
| 54.|[What is the use of WebSocket API?](#q-what-is-the-use-of-websocket-api)|
67+
| 55.|[What does `enctype='multipart/form-data'` mean?](#q-what-does-enctype-multipart-form-data-mean)|
68+
| 56.|[What is progressive rendering?](#q-what-is-progressive-rendering)|
69+
| 57.|[What is difference between Select and Datalist?](#q-what-is-difference-between-select-and-datalist)|
70+
71+
<br/>
72+
1373
#### Q. ***Does localStorage throw error after reaches maximum limits?***
1474
Yes
1575

0 commit comments

Comments
 (0)