dev:web_technologies

Differences

This shows you the differences between two versions of the page.


Previous revision
dev:web_technologies [2022/08/17 06:57] (current) Henrik Yllemo
Line 1: Line 1:
 +~~NOTOC~~
 +====== Web Technologies ======
  
 +  * JQuery
 +  * HTTP vs HTTPS
 +  * [[kb:document_object_model|Document Object Model (DOM)]]
 +  * DOM Events
 +  * Web APIs
 +  * SVG
 +  * Bootstrap - https://www.w3schools.com/bootstrap/bootstrap_ver.asp
 +==== HTML ====
 +HyperText Markup Language (HTML) is used to describe and define the content of a webpage.
 +
 +  * https://www.geeksforgeeks.org/html-tutorials/
 +  * https://developer.mozilla.org/en-US/docs/Web/HTML
 +  * https://www.w3schools.com/html
 +  * https://devdocs.io/html/
 +
 +==== CSS ====
 +Cascading Style Sheets (CSS) are used to describe the appearance or presentation of content on a webpage
 +
 +  * https://www.geeksforgeeks.org/css-tutorials/
 +  * https://developer.mozilla.org/en-US/docs/Web/CSS
 +  * https://www.w3schools.com/css
 +  * https://devdocs.io/css/
 +
 +
 +==== JavaScript (JS) ==== 
 +JavaScript is the scripting language that runs in the browser. 
 +
 +  * https://www.geeksforgeeks.org/javascript-tutorial/
 +  * https://developer.mozilla.org/en-US/docs/Web/JavaScript
 +  * https://www.w3schools.com/js
 +  * https://devdocs.io/javascript/
 +
 +
 +----
 +
 +
 +<callout type="primary" title="Related:">
 +{{topic>web dev-web}}
 +</callout>
 +
 +<callout title="External links:">
 +  * https://developer.mozilla.org/en-US/docs/Web
 +  * 
 +</callout> 
 +
 +{{tag>web dev-web internet}}