Recent

6/recent/ticker-posts

HTML (11)

HTML (11)


Despite warnings, computers still vulnerable to hackers of start ...


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
  1. Numbered  <ol>
  2. Unnumbered <ul>
  3. 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>



Post a Comment

0 Comments