0% found this document useful (0 votes)
7 views3 pages

Notes Class 9

The document outlines key HTML tags for content formatting, including <b>, <i>, <u>, <br>, <p>, <h1> to <h6>, and <a>, which help structure and style web content. It also explains how to redirect users to another web page using the <meta> tag and display content from another page using the <iframe> tag. Additionally, it lists popular text editors and tools for web design and development, such as Visual Studio Code, Sublime Text, and Adobe Dreamweaver.

Uploaded by

umerkg95
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views3 pages

Notes Class 9

The document outlines key HTML tags for content formatting, including <b>, <i>, <u>, <br>, <p>, <h1> to <h6>, and <a>, which help structure and style web content. It also explains how to redirect users to another web page using the <meta> tag and display content from another page using the <iframe> tag. Additionally, it lists popular text editors and tools for web design and development, such as Visual Studio Code, Sublime Text, and Adobe Dreamweaver.

Uploaded by

umerkg95
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Notes for CS:

HTML AND ITS FUNCTIONS:

Short questions and answers:


Q1: Identify and explain some HTML tags used for formatting
of the content?

• A: <b>: Makes the text bold. <b> is used for stylistic


purposes,for example: <b>This is bold text</b>
<i>: Italicizes the text. <i> is for stylistic use, FOR
EXAMPLE: <i>This is italic text</i>.
<u>: Underlines the text.for example:
• <u>This text is underlined</u>
• <br>: Inserts a line break.
• This is a line<br>This is another line
• <p>: Defines a paragraph.
• <p>This is a paragraph.</p>
• <h1> to <h6>: Defines headers, <h1> being the largest
and <h6> the smallest.
• <h1>This is a main heading</h1>
<h2>This is a subheading</h2>
• <a>: Creates hyperlinks.
• <a href="https://example.com">This is a link</a>
• These tags help in structuring and styling web content
effectively.

Q2: How can a user be redirected to another web page?


A: A user can be redirected using the HTML <meta> tag.

• HTML Meta Refresh:

<meta http-equiv="refresh"
content="5;url=https://example.com">

Q3: Is it possible to display the entire contents of another web


page in our HTML page? How?

• A: Yes, it is possible to display the contents of another


web page using the <iframe> tag. This tag embeds
another HTML page within your page.
• Example:
• <iframe src="https://example.com" width="600"
height="400"></iframe>

• Attributes:
o src: The URL of the page to be embedded.
o width: The width of the iframe.
o height: The height of the iframe.
• .

Q4: List some popular text editors and other tools which help
in designing and development of websites?
• A: Some popular text editors and tools for web design
and development include:
• Visual Studio Code: Feature-rich code editor with
extensions support.
• Sublime Text: Lightweight and customizable code
editor.
• Atom: Open-source editor with a community of
developers.
• Notepad++: Simple and powerful text editor for
Windows.
• Brackets: Editor focused on web development with live
preview.
• Adobe Dreamweaver: Comprehensive tool for web
design and development.
• Figma: Interface design tool for collaborative design.
• Bootstrap: Framework for building responsive websites.
• These tools provide various functionalities to streamline
the process of designing and developing web pages.

You might also like