Image export of mind map is here:
HTML export of mind map is here:
Web Dev
- HTML
- Structure of the web page, which is rendered by browser
- Static pages
- Navigation is linked by anchor/href tag
- Navigation is linked by anchor/href tag
- Dynamic pages
- HTML Content is generated based on the database content
- Actions are through buttons, which will submit the form
- server is responsible to handle the request and respond back
- HTML Content is generated based on the database content
- JavaScript
- Client side scripting
- to avoid the load on the server
- to avoid the load on the server
- Used for client side validation
- used for AJAX
- Used to generate the dynamic web page
- Used to generate the dynamic web page
- Client side scripting
- CSS
- used for the styling of the web pages
- Browser applies the CSS while rendering the web page
- Browser applies the CSS while rendering the web page
- for common style across the application
- helps to keep the HTML code clean
- Improves maintainability
- Improves readability
- Improves maintainability
- used for the styling of the web pages
- Server Side Scripting
executed at the server side to generate the dynamic HTML content
Example: JSP, ASP, Velocity, DJango, etc
Scriplet and HTML are placed in the same file and
scriplet is executed just before server sends the HTML response
- AJAX
-
Instead of form submit, a XMLHTTP call is made to the server and
based on the result, part of the HTML page is rendered.
In Traditional web dev, the response replaces whole HTML page,
but in AJAX, part of the HTML can be updated based on the XMLHTTP response
can make syncronous or asynchronous XMLHTTP calls
-
No comments:
Post a Comment