Code:
!DOCTYPE html> <html> <body> <ul> <li>First Name</li> <li>Last Name</li> <li>Address</li> <li>phone number</li> </ul> </body> </html>
!DOCTYPE html> <html> <body> <ul> <li>First Name</li> <li>Last Name</li> <li>Address</li> <li>phone number</li> </ul> </body> </html>
<!DOCTYPE html> <html> <body> <ul> <li>First Name</li> <li>Last Name</li> <li>Address</li> <li>phone number</li> </ul> </body> </html>
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
ul {
list-style-type: none;
}
</style>
</head>
<body>
<h1>W3Docs</h1>
<p>Our books:</p>
<ul>
<li>Learn HTML</li>
<li>Learn CSS</li>
<li>Learn Javascript</li>
<li>Learn Git</li>
</ul>
</body>
</html>
Comment