[go: up one dir, main page]

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

My Webpage

The document is a practical work assignment from a student at the Tashkent University of Information Technologies, focusing on creating web applications. It includes theoretical questions about HTML tags, their functions, and differences, along with practical tasks. Key concepts covered include the purpose of various HTML tags such as <html>, <head>, <title>, <body>, and <p>, as well as the <a> tag for hyperlinks.
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)
9 views3 pages

My Webpage

The document is a practical work assignment from a student at the Tashkent University of Information Technologies, focusing on creating web applications. It includes theoretical questions about HTML tags, their functions, and differences, along with practical tasks. Key concepts covered include the purpose of various HTML tags such as <html>, <head>, <title>, <body>, and <p>, as well as the <a> tag for hyperlinks.
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

MINISTRY OF HIGHER EDUCATION AND INNOVATIONS

OF THE REPUBLIC OF UZBEKISTAN


FACULTY OF SOFTWARE ENGINEERING TASHKENT
UNIVERSITY OF INFORMATION TECHNOLOGIES NAMED
MUHAMMAD AL-KHORAZMI

Creating web applications

1- Practical work

Performed by:Mukhtorov Maqsudbek, student of group 319-23

Checked by: Professor Akilan


Part 1: Answer the following questions (Theory)
1. What is an HTML tag?
2. Name any five basic HTML tags and their uses.
3. What is the difference between <h1> and <h6> tags?
4. What is the purpose of the <title> tag in an HTML document?
5. How does the <a> tag work? Provide an example.

Answers:

1. An HTML tag is a special code used to create and format web pages. It tells a
web browser how to display content like text, images, or links.

2. Here are five basic HTML tags and what they do:

1. <html> – Starts and ends an HTML page.

2. <head> – Holds important info like the page title.

3. <title> – Sets the page name in the browser tab.

4. <body> – Holds everything you see on the page.

5. <p> – Creates a paragraph of text.

3. <h1> is the largest and most important heading, while <h6> is the smallest
and least important heading.

4. The <title> tag sets the page title shown in the browser tab, helps with SEO,
and appears in bookmarks.

Example:

<title>My Webpage</title>

5. The <a> tag creates a hyperlink that allows users to navigate to another
webpage, section, or resource.

Part 2: Hands-on Task (Practical)

You might also like