Recent

6/recent/ticker-posts

HTML (13 ) Part 2

HTML (13 ) Part 2 


Best all-in-one PCs: the best space-saving desktops | TechRadar


Example ↓↓↓

<html>
<head>
<title>My Page </title>
</head>
<body>
<h1> Numbered List </h1>
<ol>
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ol>
<h2> Letter List </h2>
<ol type = "A">
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ol>
<h3> Lowercase Letters </h3>
<ol type = "a">
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ol>
<h4> Roman numbers </h4>
<ol type = "I">
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ol>
<h5> Lowercase Roman </h5>
<ol type = "i">
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ol>
</body>
</html>

Post a Comment

0 Comments