Class 6 Exam  >  Class 6 Notes  >  Computer Science for Class 6  >  Chapter Notes: Intro to HTML

Intro to HTML Chapter Notes | Computer Science for Class 6 PDF Download

What is HTML?

HTML is a computer language invented to allow website creation. The websites can then be viewed by anyone else connected to the Internet. It is relatively easy to learn, with the basics being accessible to most people in one sitting and quite powerful in what it allows you to create. HTML is used to build the websites or web based applications

HTML stands for Hyper Text Markup Language

  • HyperText is the method by which you move around on the web by clicking on special text called hyperlinks which bring you to the next page.
  • Markup is what HTML tags do to the text inside them. They mark it as a certain type of text for example italicized text.

How does it work?

  • HTML consists of a series of short codes typed into a text-file called as tags. The text is then saved as html file, and viewed through a browser like Internet Explorer. This browser reads the file and translates the text into a visible form, hopefully rendering the page as the author had intended.
  • Some of the most popular HTML editors, such as FrontPage or Dreamweaver will let you create pages more or less as you write documents in Word or whatever text editor you are using.

Essential HTML Tags

There are four sets of HTML tags that form the basic structure needed for every HTML file:

Intro to HTML Chapter Notes | Computer Science for Class 6

<html> </html>
This basically defines the document as web page. It also identifies the beginning and end of the HTML document. All other tags must fall between the html tags.

<head> </head>
The header contains information about the document that will not appear on the actual page, such as the title of the document, the author etc.

<title> </title>
The title tag defines the title that will appear in the title bar of your web browser. The title must appear between the head tags.

<body> </body>

  • The body tags contain all the information and other visible content on the page. All your images, links and plain text must go between the <body> and </body> tags.
  • You may also be interested in the basic tags for adding content and headings.

Below are key tags along with short examples:Intro to HTML Chapter Notes | Computer Science for Class 6

<p> Paragraph Tag </p>

The <p> and </p> represent HTML tags, and the term “Paragraph Tag” signifies the HTML element, specifically the text displayed on the page. This tag arranges any text positioned between the <p> opening tag and the </p> closing tag as a regular paragraph or primary body text.

<h2> Heading Tag </h2>

In this instance, <h2> and </h2> serve as the HTML tags, and the term “Heading Tag” denotes the HTML element, specifically the heading visible on the page. Employing this tag will style any text located between the <h2> opening tag and the </h2> closing tag as a Heading 2, which is a type of subheading.

<b> Bold Tag </b>

In this case, the <b> and </b> are HTML tags, and the “Bold Tag” is the HTML element, which means the text on the page. This element makes the text between the <b> opening tag and the </b> closing tag appear bold.

<i> Italic Tag </i>

In this instance, the <i> and </i> represent HTML tags, and the “Italic Tag” is the HTML element, referring to the on-page text. This tag is used to style the text between the opening <i> tag and the closing </i> tag, making it appear in italic format.

<u> Underline Tag </u>

In this scenario, the <u> and </u> serve as HTML tags, and the “Underline Tag” is the HTML element, denoting the on-page text. The purpose of this tag is to style the text between the opening <u> tag and the closing </u> tag, rendering it in an underlined format.

Example

Below is a basic html document. Notice that everything falls between the html tags, the title appears within the head of the document, and that the body comes after the head.
1. Open Notepad.
2. Type the HTML program as given below.
3. Click file->Save as
Intro to HTML Chapter Notes | Computer Science for Class 64. Select Desktop, type the file name as myfile.html and select All files in Save as type box and Click on save.

Your HTML file will be save to desktop
Intro to HTML Chapter Notes | Computer Science for Class 6

5. Double click on the file(as shown below) and your webpage is ready for display.
Intro to HTML Chapter Notes | Computer Science for Class 6

Download the notes
Chapter Notes: Intro to HTML
Download as PDF
Download as PDF

Empty tag and Container tag

A container tag has two ends (an opening and a closing) whereas an empty tag doesn't. The paragraph tag is an example of a container tag:

<p>Our paragraph text here.</p>

The image tag is a good example of an empty tag.

<img src="https://cn.edurev.in/vslogo.png" >

  • See how the initial paragraph tag (<p>) has a corresponding end tag? The text in between is "contained" by the tag.
  • The majority of tags are "container" tags. They have an opening and a closing tag.
  • However, a few tags are "self-contained" or "empty" tags in that they have an opening tags but not a closing one.

They common ones are:

  • <br> = break
  • <img> = image
  • <meta> = metadata within an HTML document.
The document Intro to HTML Chapter Notes | Computer Science for Class 6 is a part of the Class 6 Course Computer Science for Class 6.
All you need of Class 6 at this link: Class 6
Are you preparing for Class 6 Exam? Then you should check out the best video lectures, notes, free mock test series, crash course and much more provided by EduRev. You also get your detailed analysis and report cards along with 24x7 doubt solving for you to excel in Class 6 exam. So join EduRev now and revolutionise the way you learn!
Sign up for Free Download App for Free
39 videos|28 docs|6 tests

Up next

FAQs on Intro to HTML Chapter Notes - Computer Science for Class 6

1. What are some popular HTML editors?
Ans. Some popular HTML editors include Sublime Text, Visual Studio Code, Atom, and Notepad++.
2. What is the basic structure of an HTML document?
Ans. The basic structure of an HTML document includes the HTML tags <html>, <head>, and <body>, as well as the doctype declaration <!DOCTYPE html>.
39 videos|28 docs|6 tests
Download as PDF

Up next

Explore Courses for Class 6 exam
Related Searches

study material

,

Viva Questions

,

pdf

,

Semester Notes

,

Intro to HTML Chapter Notes | Computer Science for Class 6

,

Sample Paper

,

Important questions

,

video lectures

,

Summary

,

Intro to HTML Chapter Notes | Computer Science for Class 6

,

Exam

,

practice quizzes

,

ppt

,

Objective type Questions

,

mock tests for examination

,

shortcuts and tricks

,

Intro to HTML Chapter Notes | Computer Science for Class 6

,

Previous Year Questions with Solutions

,

past year papers

,

MCQs

,

Free

,

Extra Questions

;