Kisi-Kisi Informatika XII
Kisi-Kisi Informatika XII
1. list
• Unordered list
<!DOCTYPE html>
<html>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</body>
</html>
• Ordered list
<!DOCTYPE html>
<html>
<body>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
• Attribute type of ordered list
Ordered HTML List - The Type Attribute
The type attribute of the <ol> tag, defines the type of the list item marker:
Type Description
type="1" The list items will be numbered with numbers (default)
type="A" The list items will be numbered with uppercase letters
type="a" The list items will be numbered with lowercase letters
type="I" The list items will be numbered with uppercase roman numbers
type="i" The list items will be numbered with lowercase roman numbers
• Other list (Description List-Description Tag-Define Description)
<!DOCTYPE html>
<html>
<body>
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
</body>
</html>
2. img
<!DOCTYPE html>
<html>
<body>
</body>
</html>
3. video
<!DOCTYPE html>
<html>
<body>
<p>When the target attribute of a link matches the name of an iframe, the link will open in the
iframe.</p>
</body>
</html>
4. href
<!DOCTYPE html>
<html>
<body>
<h1>HTML Links</h1>
</body>
</html>
5. embed
• Embed Video
<!DOCTYPE html>
<html>
<body>
</body>
</html>
• Embed Images
<!DOCTYPE html>
<html>
<body>
</body>
</html>
• Embed Page
<!DOCTYPE html>
<html>
<body>
</body>
</html>
6. button
<!DOCTYPE html>
<html>
<body>
</body>
</html>