1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-04-04 07:22:26 +02:00

Add content to DOM APIs (#6502)

content added to DOM API section
This commit is contained in:
Federico Taborda 2024-08-12 05:37:07 -03:00 committed by GitHub
parent fc5cd02909
commit dd329e8b0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1 +1,8 @@
# DOM APIs
# DOM APIs
With HTML DOM, JavaScript can access and change all the elements of an HTML document such as its attributes, CSS styles, remove elements, add and create new elements on the page. Web API means application programming inteface for the web. All browsers have a set og built-in Web APIs to support complex operations, and to help accessing data. Like Geolocation API, Web Storage, Web History and others.
Visit the following resources to learn more:
- [@article@DOM- MDN Docs](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model)
- [@article@Web APIs- W3schools](https://www.w3schools.com/js/js_api_intro.asp)