elements
dz / webdev / html / elementsSubgraphs
Node Tree
Nodes
details | |
content | <details>: The <details> HTML element creates a disclosure widget in which information is visible only when the widget is toggled into an "open" state. A summary or label must be provided using the <summary> element. |
children |
summary ( to provide a summary,or label)
|
hyperlink | https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details |
location | knowledge/webdev.dz:457 |
2024-12-09 09:40 Getting a chance to use the
tag
summary | |
content | The <summary> HTML element specifies a summary, caption, or legend for a <details> element's disclosure box. Clicking the <summary> element toggles the state of the parent <details> element open and closed. |
parents | details |
hyperlink | https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary |
location | knowledge/webdev.dz:465 |
input | |
content | <input>: The <input> HTML element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent. The <input> element is one of the most powerful and complex in all of HTML due to the sheer number of combinations of input types and attributes. |
children | input/type |
parents | webdev/html/elements |
hyperlink | https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input |
location | knowledge/webdev.dz:476 |
script | |
content | <script>: The <script> HTML element is used to embed executable code or data; this is typically used to embed or refer to JavaScript code. The <script> element can also be used with other languages, such as WebGL's GLSL shader programming language and JSON. |
children | javascript/import_js_module_html |
parents | webdev/html/elements |
hyperlink | https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script |
location | knowledge/webdev.dz:495 |