ICT Notes 2024
ICT Notes 2024
2. <html>: Opening tag that indicates the start of the HTML document.
4. <title>: Sets the title of the webpage (displayed on the browser tab).
- Heading Tags:
- <h2>: Subheading.
- Paragraph Tag:
- Image Tag:
- Link Tag:
- List Tags:
Text Formatting
Background Color
Lists
- Ordered List:
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
- Unordered List:
<ul>
<li>Item one</li>
<li>Item two</li>
<li>Item three</li>
</ul>
Key Terms
- Domain Name Server (DNS): A system that translates domain names into IP
addresses.
- Ethical Behaviour: Acting in ways that are morally right, such as being
honest.
6. The _______ code tells the browser that the document is an HTML
document.
11. A tag that indicates where the HTML document starts is _______.
12. _______ is the practice of ensuring one’s actions are morally acceptable.
- a) <list>
- b) <li>
- c) <item>
- d) <ol>
- a) text-align
- b) align
- c) center
- d) position
- a) Unordered list
- b) Ordered list
- c) Bulleted list
- a) <image src=”image.jpg”>
- b) <img src=”image.jpg”>
- c) <picture src=”image.jpg”>
- d) <src img=”image.jpg”>
- a) Arial
- b) Comic Sans
- c) Helvetica
- a) Domain Name
- b) URL
- c) IP Address
- d) Both a and b
- c) To add links
- d) To format text
9. Which attribute specifies the link destination in an anchor tag?
- a) href
- b) src
- c) link
- d) destination
<!DOCTYPE html>
<html>
<head>
<title>Quaid-E-Azam</title>
</head>
<body>
<br>
<br>
<p>He is regarded as a symbol of unity, faith, and discipline.</p>
<br>
</body>
</html>