Skip to content

Commit e0c1d06

Browse files
committed
Update README.md
1 parent 71eeffa commit e0c1d06

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ Indicates how much of a task has been completed (often marked as a percentage).
258258
<b><a href="#">↥ back to top</a></b>
259259
</div>
260260

261-
## Q. ***What are different new form element types provided by HTML5?***
261+
## Q. ***How many new form elements are introduced in html5?***
262262

263263
|Sl.No| Element | Description |
264264
|-----|-------------|---------------------------|
@@ -430,7 +430,9 @@ Yes, header elements can be used multiple times in documents. A `<header>` tag m
430430
A header element is intended to usually contain the section's heading (an h1–h6 element or an hgroup
431431
element), but this is not required. The header element can also be used to wrap a section's table of
432432
contents, a search form, or any relevant logos.
433+
```
433434

435+
```html
434436
The footer element represents a footer for its nearest ancestor sectioning content or sectioning root
435437
element. A footer typically contains information about its section such as who wrote it, links to related
436438
documents, copyright data, and the like.
@@ -617,7 +619,9 @@ Exception: QuotaExceededError: Failed to execute 'setItem' on 'Storage':
617619

618620
## Q. ***Why to use IndexedDB instead of WebSQL in HTML5?***
619621

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.
621625

622626
**Advantages**
623627

@@ -634,7 +638,9 @@ Exception: QuotaExceededError: Failed to execute 'setItem' on 'Storage':
634638
* Suffers from object-relational impedance mismatch.
635639
* Diminishes agility, as database schema must be defined upfront, with all records in a table matching the same structure.
636640

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.
638644

639645
**Advantages**
640646

0 commit comments

Comments
 (0)