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)