Skip to content

Commit 4dae506

Browse files
committed
Update README.md
1 parent 405cf2a commit 4dae506

File tree

1 file changed

+1
-29
lines changed

1 file changed

+1
-29
lines changed

README.md

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,6 @@ Allows to attach a list of suggestions to a text input element. As soon as the u
203203
</datalist>
204204
```
205205

206-
[Live demo](https://learning-zone.github.io/html-interview-questions/html5-semantic-tags/datalist.html)
207-
208206
### **2. Meter Tag**
209207

210208
Indicates a numeric value that falls within a range. The tag supports a number of attributes:
@@ -224,8 +222,6 @@ value: If you don\'t specify a value, the first numeric value inside the `<meter
224222
<p>Pollution Level: <meter low="60" high="80" max="100" value="85">Very High</meter></p>
225223
```
226224

227-
[Live demo](https://learning-zone.github.io/html-interview-questions/html5-semantic-tags/meter.html)
228-
229225
### **3. Output Tag**
230226

231227
It indicates a section of the page that can be modified by a script (usually JavaScript).
@@ -238,8 +234,6 @@ It indicates a section of the page that can be modified by a script (usually Jav
238234
</form>
239235
```
240236

241-
[Live demo](https://learning-zone.github.io/html-interview-questions/html5-semantic-tags/output.html)
242-
243237
### **4. Progress Tag**
244238

245239
Indicates how much of a task has been completed (often marked as a percentage). It is expected to be modified through JavaScript code.
@@ -267,8 +261,6 @@ Indicates how much of a task has been completed (often marked as a percentage).
267261
</script>
268262
```
269263

270-
[Live demo](https://learning-zone.github.io/html-interview-questions/html5-semantic-tags/progress.html)
271-
272264
<div align="right">
273265
<b><a href="#">↥ back to top</a></b>
274266
</div>
@@ -700,8 +692,6 @@ Syntax:
700692
</html>
701693
```
702694

703-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/application-cache.html)
704-
705695
*Note: Using the application caching feature described here is at this point highly discouraged; it\'s in the process of being removed from the Web platform. Use **Service Workers** instead. In fact as of Firefox 44, when AppCache is used to provide offline support for a page a warning message is now displayed in the console advising developers to use Service workers instead (bug 1204581).*
706696

707697
<div align="right">
@@ -1287,8 +1277,6 @@ function toggleFullScreen() {
12871277
}
12881278
```
12891279

1290-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/html5-api.html)
1291-
12921280
<div align="right">
12931281
<b><a href="#">↥ back to top</a></b>
12941282
</div>
@@ -1358,8 +1346,6 @@ if ("geolocation" in navigator) {
13581346
</html>
13591347
```
13601348

1361-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/geolocation.html)
1362-
13631349
<div align="right">
13641350
<b><a href="#">↥ back to top</a></b>
13651351
</div>
@@ -1532,8 +1518,6 @@ socket.addEventListener('message', function(event) {
15321518
</html>
15331519
```
15341520

1535-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/canvas.html)
1536-
15371521
<div align="right">
15381522
<b><a href="#">↥ back to top</a></b>
15391523
</div>
@@ -1578,8 +1562,6 @@ There are following advantages of using SVG over other image formats like JPEG,
15781562
</html>
15791563
```
15801564

1581-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/svg.html)
1582-
15831565
### **Canvas**
15841566

15851567
Canvas is a HTML element is used to draw graphics on a web page. It is a bitmap with an “immediate mode” graphics application programming interface (API) for drawing on it. The `<canvas>` element is only a container for graphics. In order to draw the graphics, you are supposed to use a script. Canvas has several strategies when it comes to drawing paths, boxes, circles, text & adding images.
@@ -1604,9 +1586,7 @@ Canvas is a HTML element is used to draw graphics on a web page. It is a bitmap
16041586
</html>
16051587
```
16061588

1607-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/canvas.html)
1608-
1609-
**Differences between SVG and Canvas**
1589+
**Differences between SVG and Canvas:**
16101590

16111591
|SVG |Canvas |
16121592
|-----------------------|-----------------------------------------------|
@@ -1664,8 +1644,6 @@ Example
16641644
</html>
16651645
```
16661646

1667-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/drag-drop.html)
1668-
16691647
<div align="right">
16701648
<b><a href="#">↥ back to top</a></b>
16711649
</div>
@@ -1891,8 +1869,6 @@ The `<iframe>` HTML element represents a nested browsing context, embedding anot
18911869
</html>
18921870
```
18931871

1894-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/iframe.html)
1895-
18961872
### **The Iframe Tag Attributes**
18971873

18981874
|Attribute | Description |
@@ -1970,8 +1946,6 @@ The `<mark>` HTML element represents text which is marked or highlighted for ref
19701946
</html>
19711947
```
19721948

1973-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/mark.html)
1974-
19751949
<div align="right">
19761950
<b><a href="#">↥ back to top</a></b>
19771951
</div>
@@ -2222,8 +2196,6 @@ The `<small>` HTML element represents side-comments and small print, like copyri
22222196
</html>
22232197
```
22242198

2225-
[Live demo](https://learning-zone.github.io/html-interview-questions/assets/files/small-element.html)
2226-
22272199
<div align="right">
22282200
<b><a href="#">↥ back to top</a></b>
22292201
</div>

0 commit comments

Comments
 (0)