Computer Science, asked by arunkumarvankar2003, 1 year ago

Write a html Program for following order list and unordered list
1) operating system
Unix
Linux
Dos
Windows 95

Answers

Answered by ayush579
0
References
1. Ричард Петерсен .“LINUX: руководство по операционной системе
2. D.Azzarito, David W. Green (Contributor). “The Os/2 Warp Survival Guide: Installing,
Configuring, and Using Os/2 2.X”
3. G.Harvey. “Dos for Dummies Quick Reference”
4. J.Duntemann. “Assembly Language Step-by-step: Programming with DOS and Linux“
5. K.August. “Social Indicators and Social Theory: Elements of an Operational System”
6. A.Slater. “Handbook of Physical Distribution Software: Distribution Planning and
Operational Systems”
7. В.Э.Фигурнов. "IBM PC для пользователя 6 – е издание". Москва, 1995
8. Панкратов Е. “'Операционная система MS-DOS 6.22: Справочное пособие”
9. A.Vidžiūnas, D.Vitkutė. “Personalinių kompiuterių operacinės sistemos”. Vilnius, “Mokslo
Aidas”, 1995
10. М. Гук. “Аппаратные средства IBM PC”. Санкт – Петербург, 2001
11. J.L.Hennessy, A.A.Patterson. “Compiuter Architecture: A Quantitative Approach.” San
Mateo, 1996
12. А.Робачевский “Операционная система UNIX”
13. Б.Керниган, Р.Пайк “UNIX. Програмное окружение”
14. Mark T. Chapman “Os/2 Power User's Reference: From Os/2 2.0 Through Warp”, 1996
15. A. Venčkauskas, A.Venčkauskienė “Operacinių sistemų pradmenys”, Kaunas,
“Technologija”, 2002
16. http://web.mit.edu/invent/iow/russell.html
17. http://seattletimes.nwsource.com/html/businesstechnology/2002103322_cdman29.html
18. http://inventors.about.com/library/inventors/blopticaldisk.htm
19. http://en.wikipedia.org/wiki/uníх
plєαѕє mαrk вrαín.... αnd fσllσw mє
Answered by AskewTronics
0

HTML program :

Explanation:

<HTML>

<HEAD><TITLE> List </TITLE>

</HEAD>

<BODY>

<! –– Ordered list ––>

<ol>

 <li>operating system</li>

</ol>  

<! –– Unorded List ––>

<ul>

 <li>Unix</li>

 <li>Linux</li>

 <li>Dos</li>

 <li>Windows 95</li>

</ul>  

</BODY>

</HTML>

Code Explanation:

  • The above code is an HTML code for the list which is defined in the question.
  • When the user wants to run the code then he needs to write the code on the file and save it with some file name with .html extension and then he needs to open the file with any browser.

Learn More:

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