Write HTML code to create the following lists:

List –

  • C
  • C++
  • Fortran
  • COBOL

 

HTML Code-

<!DOCTYPE html>
<html>
<head>
<title>Programming Languages List</title>
</head>
<body>

<ul>
<li>C</li>
<li>C++</li>
<li>Fortran</li>
<li>COBOL</li>
</ul>

</body>
</html>

संक्षिप्त व्याख्या-

  • <ul> → Unordered List (बुलेट सूची)

  • <li> → List Item (सूची का एक आइटम)

Speak Your Mind

*

error: Content is protected !!