Fun Fact
35 |Fun fact: most of the fun facts on the Internet are not actually fun.
36 |├── _config.yml ├── lib ├── img │ ├── 7.jpg │ ├── frame-full.jpg │ └── helloworld.swf ├── video │ └── NASA.mp4 ├── audio │ └── Sleep-Away.mp3 ├── js │ └── web-workers-example.js ├── sse_example.php └── example.appcache ├── assets ├── images │ ├── horse.jpg │ ├── star.png │ ├── layers.png │ ├── semantic-tags.png │ └── progressive-rendering.png └── files │ ├── audio-tag.html │ ├── mark.html │ ├── video-tag.html │ ├── session-storage.html │ ├── svg.html │ ├── iframe.html │ ├── progress-tag.html │ ├── small-element.html │ ├── microdata.html │ ├── local-storage.html │ ├── server-sent-events.html │ ├── websocket-api.html │ ├── application-cache.html │ ├── drag-drop.html │ ├── web-workers.html │ ├── modernizr.html │ ├── geolocation.html │ ├── canvas.html │ ├── semantic-tags.html │ ├── html5-api.html │ └── indexed-db.html ├── html5-semantic-tags ├── html5-input-types_files │ ├── color-ie.jpg │ ├── date-ie.jpg │ ├── email-ie.jpg │ ├── list-ie.jpg │ ├── range-ie.jpg │ ├── tel-ie.jpg │ ├── url-ie.jpg │ ├── date-opera.jpg │ ├── list-opera.jpg │ ├── number-ie.jpg │ ├── pattern-ie.jpg │ ├── search-ie.jpg │ ├── tel-chrome.jpg │ ├── tel-opera.jpg │ ├── tel-safari.jpg │ ├── url-chrome.jpg │ ├── url-opera.jpg │ ├── url-safari.jpg │ ├── color-chrome.jpg │ ├── color-firefox.jpg │ ├── color-opera-2.jpg │ ├── color-opera.jpg │ ├── color-safari.jpg │ ├── date-chrome.jpg │ ├── date-firefox.jpg │ ├── date-safari.jpg │ ├── email-chrome.jpg │ ├── email-firefox.jpg │ ├── email-opera.jpg │ ├── email-safari.jpg │ ├── list-chrome.jpg │ ├── list-firefox.jpg │ ├── list-safari.jpg │ ├── number-chrome.jpg │ ├── number-opera.jpg │ ├── number-safari.jpg │ ├── pattern-opera.jpg │ ├── range-chrome.jpg │ ├── range-firefox.jpg │ ├── range-opera.jpg │ ├── range-safari.jpg │ ├── required-ie.jpg │ ├── search-chrome.jpg │ ├── search-opera.jpg │ ├── search-safari.jpg │ ├── tel-firefox.jpg │ ├── url-firefox.jpg │ ├── url-opera-2.jpg │ ├── number-firefox.jpg │ ├── pattern-chrome.jpg │ ├── pattern-firefox.jpg │ ├── pattern-safari.jpg │ ├── placeholder-ie.jpg │ ├── required-chrome.jpg │ ├── required-opera.jpg │ ├── required-safari.jpg │ ├── search-firefox.jpg │ ├── url-opera-list.jpg │ ├── email-opera-list.jpg │ ├── placeholder-chrome.jpg │ ├── placeholder-opera.jpg │ ├── placeholder-safari.jpg │ ├── required-firefox.jpg │ ├── placeholder-firefox.jpg │ ├── number-opera-submit-error.jpg │ ├── html5-utils.js │ ├── browser-detect.js │ ├── modernizr.js │ ├── jquery-ui.css │ └── jquery-ui.js ├── session-storage.html ├── mark.html ├── local-storage.html ├── audio.html ├── meter.html ├── output.html ├── video.html ├── canvas.html ├── web-workers.html ├── datalist.html ├── progress.html ├── geolocation.html ├── indexed-db.html └── index.html ├── html5-events.md └── html5-tags.md /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /lib/img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/lib/img/7.jpg -------------------------------------------------------------------------------- /lib/video/NASA.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/lib/video/NASA.mp4 -------------------------------------------------------------------------------- /assets/images/horse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/assets/images/horse.jpg -------------------------------------------------------------------------------- /assets/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/assets/images/star.png -------------------------------------------------------------------------------- /lib/img/frame-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/lib/img/frame-full.jpg -------------------------------------------------------------------------------- /lib/img/helloworld.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/lib/img/helloworld.swf -------------------------------------------------------------------------------- /assets/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/assets/images/layers.png -------------------------------------------------------------------------------- /lib/audio/Sleep-Away.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/lib/audio/Sleep-Away.mp3 -------------------------------------------------------------------------------- /assets/images/semantic-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/assets/images/semantic-tags.png -------------------------------------------------------------------------------- /assets/images/progressive-rendering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/assets/images/progressive-rendering.png -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/color-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/color-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/date-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/date-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/email-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/email-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/list-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/list-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/range-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/range-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/tel-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/tel-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/url-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/url-ie.jpg -------------------------------------------------------------------------------- /lib/js/web-workers-example.js: -------------------------------------------------------------------------------- 1 | var i = 0; 2 | 3 | function timedCount() { 4 | i = i + 1; 5 | postMessage(i); 6 | setTimeout("timedCount();",500); 7 | } 8 | 9 | timedCount(); -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/date-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/date-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/list-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/list-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/number-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/number-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/pattern-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/pattern-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/search-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/search-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/tel-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/tel-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/tel-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/tel-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/tel-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/tel-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/url-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/url-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/url-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/url-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/url-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/url-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/color-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/color-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/color-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/color-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/color-opera-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/color-opera-2.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/color-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/color-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/color-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/color-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/date-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/date-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/date-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/date-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/date-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/date-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/email-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/email-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/email-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/email-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/email-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/email-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/email-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/email-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/list-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/list-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/list-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/list-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/list-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/list-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/number-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/number-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/number-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/number-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/number-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/number-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/pattern-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/pattern-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/range-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/range-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/range-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/range-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/range-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/range-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/range-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/range-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/required-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/required-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/search-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/search-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/search-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/search-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/search-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/search-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/tel-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/tel-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/url-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/url-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/url-opera-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/url-opera-2.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/number-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/number-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/pattern-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/pattern-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/pattern-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/pattern-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/pattern-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/pattern-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/placeholder-ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/placeholder-ie.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/required-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/required-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/required-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/required-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/required-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/required-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/search-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/search-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/url-opera-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/url-opera-list.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/email-opera-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/email-opera-list.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/placeholder-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/placeholder-chrome.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/placeholder-opera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/placeholder-opera.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/placeholder-safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/placeholder-safari.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/required-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/required-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/placeholder-firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/placeholder-firefox.jpg -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/number-opera-submit-error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaurabhSinghRbz/html-interview-questions/HEAD/html5-semantic-tags/html5-input-types_files/number-opera-submit-error.jpg -------------------------------------------------------------------------------- /lib/sse_example.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/example.appcache: -------------------------------------------------------------------------------- 1 | CACHE MANIFEST 2 | # v1.0 : 10-08-2020 3 | 4 | CACHE: 5 | # pages 6 | Application-Cache.html 7 | 8 | # styles & scripts 9 | css/theme.css 10 | js/jquery.min.js 11 | js/default.js 12 | 13 | # images 14 | /favicon.ico 15 | images/logo.png 16 | 17 | NETWORK: 18 | login.php 19 | 20 | FALLBACK: 21 | / /offline.html -------------------------------------------------------------------------------- /assets/files/audio-tag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |HTML5 Audio Tag Example
8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /assets/files/mark.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Search results for "salamander":
8 |Several species of salamander inhabit the temperate rainforest of the Pacific Northwest.
10 |Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
11 | 12 | 13 | -------------------------------------------------------------------------------- /assets/files/video-tag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Refresh the page to increase number of hits.
17 | 18 | 19 | -------------------------------------------------------------------------------- /html5-semantic-tags/session-storage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 15 | 16 |Refresh the page to increase number of hits.
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /html5-semantic-tags/mark.html: -------------------------------------------------------------------------------- 1 |This is some highlighted text.
8 |Here are some more highlighted text.
9 | 10 | 13 |Disk Usage:
Total Score:
Pollution Level:
8 | Progress: 9 |
10 | 11 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /html5-semantic-tags/canvas.html: -------------------------------------------------------------------------------- 1 |Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
13 |The content is licensed under a W3C License.
15 | 16 | -------------------------------------------------------------------------------- /assets/files/microdata.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |My name is Elizabeth.
20 |My name is Daniel.
24 |Count numbers:
6 | 7 | 8 | 9 | 10 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /html5-semantic-tags/datalist.html: -------------------------------------------------------------------------------- 1 |Enter your favorite browser name:
8 | 9 | 16 | 17 |HTML5 WebSocket API Example
29 | 30 | 31 | -------------------------------------------------------------------------------- /assets/files/application-cache.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |8 | 9 |
10 |11 | Try opening this page, 12 | then go offline, and reload the page. The website data will be still 13 | accessible. 14 |
15 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /assets/files/drag-drop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
39 | Progress:
8 | 9 | 26 | 27 | 30 |Count numbers:
8 | 9 | 10 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /assets/files/modernizr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Modernizr in HTML 5
9 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /assets/files/geolocation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Today we are going to talk about JavaScript
13 |The section tag can contain any elements.
29 |
30 | Fun fact: most of the fun facts on the Internet are not actually fun.
36 |
53 | Provide more info about the details here.
59 |System Time:
8 | 9 | 73 | 74 | -------------------------------------------------------------------------------- /html5-semantic-tags/html5-input-types_files/browser-detect.js: -------------------------------------------------------------------------------- 1 | // From http://www.quirksmode.org/js/detect.html 2 | // * Browser name: BrowserDetect.browser 3 | // * Browser version: BrowserDetect.version 4 | // * OS name: BrowserDetect.OS 5 | 6 | var BrowserDetect = { 7 | init: function () { 8 | this.browser = this.searchString(this.dataBrowser) || "An unknown browser"; 9 | this.version = this.searchVersion(navigator.userAgent) 10 | || this.searchVersion(navigator.appVersion) 11 | || "an unknown version"; 12 | this.OS = this.searchString(this.dataOS) || "an unknown OS"; 13 | }, 14 | searchString: function (data) { 15 | for (var i=0;i| Attributes | 29 |Description | 30 |
|---|---|
<datalist> |
35 | Represents a set of pre-defined options for an input element. |
36 |
<meter> |
39 | Represents a scalar measurement within a known range | 40 |
<mark> |
43 | Represents text highlighted for reference purposes. | 44 |
<output> |
47 | Represents the result of a calculation. | 48 |
<progress> |
51 | Represents the completion progress of a task. | 52 |
<audio> |
55 | Embeds a sound, or an audio stream in an HTML document. | 56 |
<video> |
59 | Defines alternative media resources for the media elements like audio or video. |
60 |
<canvas> |
63 | Defines a region in the document, which can be used to draw graphics on the fly via scripting (usually JavaScript). | 64 |
HTML5 Input Types |
67 | 68 | |
Session Storage |
71 | The session storage uses the sessionStorage object to store data on a temporary basis, for a single window (or tab). The data disappears when session ends. | 72 |
Local Storage |
75 | LocalStorage and SessionStorage can use up to 10MB of storage but the number is actually the sum of both. For IndexedDB, you can use up to 50MB on desktop, 5MB on mobile.
76 |
|
80 |
Geolocation API |
83 | The geolocation API allows the user to provide their location to web applications
84 |
|
88 |
Web Workers |
91 | A web worker is a JavaScript running in the background, without affecting the performance of the page. | 92 |
IndexedDB |
95 | 96 | |