UNIT 6 WEB DEVELOPMENT
UNIT 6 WEB DEVELOPMENT
WEB DEVELOPMENT
Question/Answers
Q1. Differentiate between web hosting and web server.
Web Hosting Web Server
1. Purpose: Provides storage space and 1. Purpose: A system (hardware/software)
services for websites to be accessible that delivers website content to users via
online. the internet.
1
• <title>: Defines the title of the webpage, which appears on the browser tab.
• <h1> to <h6>: Header tags used to define headings in content, with <h1>
being the largest and <h6> the smallest.
Q4. Identify and explain some HTML tags used for formatting content.
• <b>: Makes text bold.
• <i>: Italicizes text.
• <u>: Underlines text.
• <sup>: Displays text as superscript.e.g.(a+b)2
• <sub>: Displays text as subscript.e.g.(a2+b2)
• <br>: Inserts a line break.
• <p>: Creates a paragraph.
2
Q8. What kind of HTML elements are used to display data in rows and columns?
HTML tables are used with the following tags:
• <table>: Defines the table structure.
• <tr>: Creates a row.
• <td>: Creates a data cell.
• <th>: Creates a header cell.
Formatting Features: Use attributes like border, cellpadding, cellspacing, and
CSS styles for table design.
Q9. Is it possible to display the entire contents of another web page in our HTML
page? How?
Yes, it is possible using the <iframe> tag, which embeds another web page within the
current page.
Example: <iframe src="https://example.com" width="600" height="400"></iframe>.
Q10. List some popular text editors and other tools that help in designing and
development of websites.
• Text Editors: VS Code, Sublime Text, Atom, Notepad++.
• Design Tools: Adobe XD, Figma, Sketch.
• Web Development Tools: Bootstrap, jQuery, GitHub, WordPress.