Skip to content

Instantly share code, notes, and snippets.

@aacassandra
Created May 2, 2020 23:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aacassandra/21fcd002536b1ddb62e9471847330fde to your computer and use it in GitHub Desktop.
Save aacassandra/21fcd002536b1ddb62e9471847330fde to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat List (8/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Contoh ol</h3>
<ol type="i">
<li>Apple</li>
<li>Orange</li>
<li>Purple</li>
</ol>
<h3>Contoh ul</h3>
<ul type="square">
<li>Apple</li>
<li>Orange</li>
<li>Purple</li>
</ul>
<h3>Contoh dl</h3>
<dl>
<dt>Title 1</dt>
<dd>About title 1</dd>
<dt>Title 2</dt>
<dd>About title 2</dd>
<dt>Title 3</dt>
<dd>Abut title 3</dd>
</dl>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment