Computer Science, asked by saumya3195, 9 months ago

design a web page with the following lists as part of its content :
1. Books
• Hacking
.Computer and Internet
• Programming
a HTML
b. C##
c. Python​

Answers

Answered by kelisto1036
0

Answer:

1) open note pad the type coding and all

2) then save in your name

3) eg = dipak. html

4) after save that close

5) then open file where you save

5) then open in exel

7) then there you done

Answered by AskewTronics
0

Below are the code of the web-page for the above problem

Explanation:

<HTML><! –– HTML open tag ––>

<HEAD><! –– HEAD open tag ––>

<TITLE><! –– TITLE open tag ––>

List

</TITLE><! –– TITLE close tag ––>

</HEAD><! –– HEAD close tag––>

<BODY><! ––BODY open tag ––>

<ul><! –– LIST open tag (First list start from here) ––>

 <li type="1">Books</li>

 <li> Hacking</li>

 <li>Computer and Internet</li>

 <li>Programming</li>

 </ul><! –– LIST close tag ––>

 <ul><! –– LIST open tag (Second list start from here) ––>

 <li type="a">HTML</li>

 <li type="a">C##</li>

 <li type="a">Python</li>

</ul><! –– LIST close tag ––>

</BODY><! –– BODY close tag ––>

</HTML><! –– HTML close tag ––>

Output:

  • The above code gives output as the list which is defined above.

Code Explanation:

  • When the user types the above code in notepad and saves it with the name. HTML and then run it on the web browser.
  • Then it prints the list which is defined above.

Learn More:

  • HTML : https://brainly.in/question/5393962
Similar questions