Use an ordered list, unordered list, and definition list to create a web page - Practical [ SWPD 4311603 ]

Practical Aim:
Use an ordered, unordered, and definition list to create a web page.
- Hint :
Create computermemory.html file
- Sample Output:

HTML List, <ol>, <li>, <ul>, <dd>, <dl>, <dt>

- Solution -  <ol> ,<ul>, <dd>, <dl>, <li> tags :

First try at own

Video Tutorial : HTML Image tag and Table tag



Code

<!DOCTYPE html>
<html>
<head><title>Computer Memory and its Type</title></head>
<body>

<h1> Computer memory and it's Type</h1>
<hr>
<dl>
<dt><b>What is Memory in computer ?</b></dt>
<dd>- A memory is similar to the human brain. It is used to save information and instructions.</dd>
</dl>

<h3>
Types of memory </h3>
<ol type="A">
<li >Primary memory(RAM and ROM) </li>
<li>Secondary memory (hard drive, CD, etc)</li>
</ol>

<dl>
<dt><b>What is Primary Memory ?</b></dt>
<dd>- The term "primary memory" refers to a group of memory units in the computer to which the CPU has direct access and which contain the instructions and data the CPU needs to process them. It is used to store data temporarily.</dd>

<dt><b>What is Secondary Memory ?</b></dt>
<dd>- A physical device used to store data and programmes permanently is known as secondary memory.</dd>
</dl>
<hr>
<h3>Types of RAM ( Random Access Memory )</h3>
<ul style="list-Style-type:circle;">
<li>SRAM(Static RAM)</li>
<li>DRAM(Dynamic RAM)</li>
</ul>
<hr>
<h3>
Types of Read-Only Memory (ROM) </h3>
<ul style="list-Style-type:square;">
<li>PROM (Programmable read-only memory) : The user can programme PROM</li>

<li>EPROM (Erasable Programmable read-only memory) : It is reprogrammable. Expose it to ultraviolet light to erase the data.</li>

<li>EEPROM (Electrically erasable programmable read-only memory) : Data can be erased using an electric field.</li>

<li>MROM(Mask ROM) – It is masked off during manufacturing.</li>
</ul>
<hr>
<h3>List of Secondary memory</h3>
<ol type="a" value="c">
<li>Hard Disk</li>
<li>Solid-state Drive</li>
<li>Pen drive</li>
<li>SD Card (Secure Digital Card)</li>
<li>Compact Disk (CD)</li>
<li>DVD ( Digital versatile disc )</li>
</ol>
</body>
</html>



Output


Post a Comment

0 Comments