Internet Technology (Networking, HTML, CSS, JavaScript , PHP etc.)
1. What are the basic tags of HTML? Explain with example? 2. What is hyperlink? What are the different types of links used in HTML? Differentiates between hyperlink and hypermedia? 3. Define JavaScript? Explain the client-side benefits of using JavaScript over VBScript 4. What is CSS? Explain various types of CSS with examples? 5. Differentiate between HUB and SWITCH 1. Basic HTML Tags: HTML (Hypertext Markup Language) uses various tags to structure and format web content. Here are some basic HTML tags along with examples: - `<html>`: Defines the beginning and end of an HTML document. <html> <!-- Your content goes here --> </html> ...