Web_Technologies_Flashcards
(7 cards)
How do we create a hyperlink using HTML?
By using the <a> tag with href attribute, e.g., <a>Click here</a>.</a>
How can we use JavaScript to change what appears on a web page?
By manipulating the DOM, e.g., document.getElementById(“demo”).innerHTML = “New content!”;
What is the difference between client-side and server-side processing?
Client-side processing happens in the browser, while server-side processing happens on a web server.
What are the advantages of client-side processing?
It’s faster and reduces load on the server.
What are the disadvantages of client-side processing?
It’s less secure and may not work uniformly across all browsers.
What are the advantages of server-side processing?
It’s more secure and can access databases.
What are the disadvantages of server-side processing?
It is slower and puts more load on the server.