You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -258,7 +258,7 @@ Indicates how much of a task has been completed (often marked as a percentage).
258
258
<b><a href="#">↥ back to top</a></b>
259
259
</div>
260
260
261
-
## Q. ***What are different new form element types provided by HTML5?***
261
+
## Q. ***How many new form elements are introduced in html5?***
262
262
263
263
|Sl.No| Element | Description |
264
264
|-----|-------------|---------------------------|
@@ -430,7 +430,9 @@ Yes, header elements can be used multiple times in documents. A `<header>` tag m
430
430
A header element is intended to usually contain the section's heading (an h1–h6 element or an hgroup
431
431
element), but this is not required. The header element can also be used to wrap a section's table of
432
432
contents, a search form, or any relevant logos.
433
+
```
433
434
435
+
```html
434
436
The footer element represents a footer for its nearest ancestor sectioning content or sectioning root
435
437
element. A footer typically contains information about its section such as who wrote it, links to related
436
438
documents, copyright data, and the like.
@@ -617,7 +619,9 @@ Exception: QuotaExceededError: Failed to execute 'setItem' on 'Storage':
617
619
618
620
## Q. ***Why to use IndexedDB instead of WebSQL in HTML5?***
619
621
620
-
**1.) WebSQL** is an API that is only supported in Chrome and Safari (and Android and iOS by extension). It provides an asynchronous, transactional interface to SQLite. Since 2010, it has been deprecated in favor of IndexedDB.
622
+
### **1. WebSQL**
623
+
624
+
It is an API that is only supported in Chrome and Safari (and Android and iOS by extension). It provides an asynchronous, transactional interface to SQLite. Since 2010, it has been deprecated in favor of IndexedDB.
621
625
622
626
**Advantages**
623
627
@@ -634,7 +638,9 @@ Exception: QuotaExceededError: Failed to execute 'setItem' on 'Storage':
634
638
* Suffers from object-relational impedance mismatch.
635
639
* Diminishes agility, as database schema must be defined upfront, with all records in a table matching the same structure.
636
640
637
-
**2.) IndexedDB** is the successor to both LocalStorage and WebSQL, designed to replace them as the “one true” browser database. It exposes an asynchronous API that supposedly avoids blocking the DOM, but as we\'ll see below, it doesn\'t necessarily live up to the hype. Browser support is extremely spotty, with only Chrome and Firefox having fully usable implementations.
641
+
### **2. IndexedDB**
642
+
643
+
It is the successor to both LocalStorage and WebSQL, designed to replace them as the “one true” browser database. It exposes an asynchronous API that supposedly avoids blocking the DOM, but as we\'ll see below, it doesn\'t necessarily live up to the hype. Browser support is extremely spotty, with only Chrome and Firefox having fully usable implementations.
0 commit comments