Recent

6/recent/ticker-posts

HTML (12)

HTML (12)

john-schnobrich-520019-unsplash — Huber Financial Advisors, LLC

Attribute (LIST TAG)
  1. UNNUMBERED LIST
  2. 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>
</html>



EXAMPLE 2 ↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
<body>
<ul type =square>
<li>Apple
<li>Orange
<li>Banana
</ul>
</body>
</html>

EXAMPLE 3 ↓↓↓↓

<html>
<head>
<title>My Page</title>
</head>
<body>
<ul type =disc
<li>Apple
<li>Orange
<li>Banana
</ul>
</body>
</html>

Post a Comment

0 Comments