Skip to content

Commit 54e8c91

Browse files
committed
Update README.md
1 parent acd38b4 commit 54e8c91

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ value: If you don’t specify a value, the first numeric value inside the `<mete
116116
countNumbers();
117117
</script>
118118
```
119+
[Live Example](https://learning-zone.github.io/html-interview-questions/html5-semantic-tags/progress.html)
120+
119121
**5.) Keygen Tag**: The `<keygen>` element generates an encryption key for passing encrypted data to a server. When an HTML form is submitted, the browser will generate a key pair and store the private key in the browser's local key storage and send the public key to the server.
120122
```html
121123
<form action="process-key.php" method="post">
@@ -124,8 +126,11 @@ value: If you don’t specify a value, the first numeric value inside the `<mete
124126
<input type="submit" value="Submit">
125127
</form>
126128
```
129+
127130
*Note: This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time.*
128131

132+
[Live Example](https://learning-zone.github.io/html-interview-questions/html5-semantic-tags/)
133+
129134
#### Q. What is the DOM? How does the DOM work?
130135

131136
The DOM (Document Object Model) is a cross-platform API that treats HTML documents as a tree structure consisting of nodes. These nodes (such as elements and text nodes) are objects that can be programmatically manipulated and any visible changes made to them are reflected live in the document. In a browser, this API is available to JavaScript where DOM nodes can be manipulated to change their styles, contents, placement in the document, or interacted with through event listeners.

0 commit comments

Comments
 (0)