Ques 22: Write HTML code to generate the given output.
1
A. Primary Memory
1. Read Only Memory
Programmable Read Only Memory(PROM)
• Flash EPROM
2. Random Access Memory
Dynamic Ram
• Static Ram
B. Secondary Memory
1. Magnetic Disk
2. Hard Disk
Segate
o Quantum
o
Answers
Answer:
not fitting under the limit
Explanation:
The HTML code to generate the given output:
<!DOCTYPE html>
<html>
<head>
<title>Memory Types</title>
</head>
<body>
<ol>
<li>A. Primary Memory
<ol type="1">
<li>Read Only Memory
<ul>
<li>Programmable Read Only Memory (PROM)</li>
<li>Flash EPROM</li>
</ul>
</li>
<li>Random Access Memory
<ul>
<li>Dynamic Ram</li>
<li>Static Ram</li>
</ul>
</li>
</ol>
</li>
<li>B. Secondary Memory
<ol type="1">
<li>Magnetic Disk</li>
<li>Hard Disk
<ul>
<li>Segate</li>
<li>Quantum</li>
</ul>
</li>
</ol>
</li>
</ol>
</body>
</html>
- These lines specify the start of the document's body and create an ordered list (<ol>) with the type attribute set to "1", which indicates that the list should use numerical numbering.
- Two list items (<li>) are then created, each containing a heading and another ordered list, which in turn contains additional list items and an unordered list (<ul>) containing more list items.
- The use of nested ordered and unordered lists in this way creates a hierarchical structure that reflects the relationships between the different types of memory and their subtypes.
- Overall, this HTML code generates a simple web page that displays a list of different types of computer memory and their subtypes in a structured, easy-to-read format.
To know more: -
https://brainly.in/question/14729172?referrer=searchResults
https://brainly.in/question/16170505?referrer=searchResults
#SPJ3