HTML (12)
Attribute (LIST TAG)
- UNNUMBERED LIST
- NUMBERED LIST
Unnumbered list: By default it is a solid circle (•). However you can change this style
Tag : <ul type = square>
EXAMPLE 1 ↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
<body>
<ul type =circle>
<li>Apple
<li>Orange
<li>Banana
</ul>
</body>
0 Comments