Chapter 6: Introduction to the Internet and HTML

Internet

The Internet is a global network of interconnected computers that form a web. To connect to the internet, you need:

Internet Services and Applications

Internet Terminologies

Introduction to HTML

HTML (HyperText Markup Language) is the standard language for creating web pages. It uses tags and attributes to structure content, such as text, images, and links. HTML was developed by Tim Berners-Lee, and various versions (HTML5 is the latest) have evolved to support modern web features.

HTML Usage, Advantages, and Disadvantages

Uses

Advantages

Disadvantages

Web Designing Terminologies

DBMS (Database Management System)

Data are raw facts, and information is processed data that provides meaningful results. A database organizes data so it can be retrieved easily when needed. A DBMS is a software system that manages databases, making it easier to store, process, and access data. Examples include MS-Access, MySQL, and Oracle.

Advantages of DBMS

Disadvantages of DBMS

Questions and Answers


1. What is HTML?

HTML (HyperText Markup Language) is the standard language used to create web pages. It defines the structure of a webpage using elements and tags.

Example:

          

Hello, World!

This is a paragraph.

2. What are basic HTML tags?

Common HTML tags include:

3. What is CSS?

CSS (Cascading Style Sheets) is used to style HTML elements and make webpages visually appealing.

Example:

          p {
              color: blue;
              font-size: 18px;
          }
        

4. What are basic CSS properties?

Common CSS properties include:

5. What is the difference between Inline, Internal, and External CSS?

Inline CSS: Applied directly to an element using the style attribute.

Internal CSS: Defined inside the <style> tag in the <head> section.

External CSS: Linked as a separate file using <link>.

6. How do you create a simple webpage?

Basic structure of an HTML webpage:

          
          
          
              My Webpage
          
          
              

Welcome!

This is my first webpage.

7. What is a hyperlink in HTML?

A hyperlink is used to navigate between web pages using the <a> tag.

Example:

          Link for W3Schools
        

8. How to add an image in HTML?

Use the <img> tag to display images.

Example:

          image currently not available
        

9. What is a list in HTML?

Lists help organize content. Types of lists:

Example:

          
  • Item 1
  • Item 2

10. What is a table in HTML?

Tables display data in rows and columns using the <table> tag.

Example:

          
Item Price
Apple 130/kg