HTML (11)
Combining Tags
Html allows you to combine Two Tags .
Eg : <h1> < font color = blue> sample text</h1>
Lists (HTML)
There are Three types of list
- Numbered <ol>
- Unnumbered <ul>
- Definition (It require separate tag for each term)
Eg ↓↓↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
<body>
<ol>
<li>Apple
<li>Orange
<li>Banana
</ol>
<ul>
<li>juice
<li>cakes
<li>vegetable
<ul>
<li>Cabbages
<li>lady finger
</ul>
</ul>
<p>Definition List</p>
<dl>
<dt>HTML
<dd>HyperText Markup Language.
</dl>
</body>
</html>
0 Comments