HTML - Authoring Tools: Unit 1
HTML - Authoring Tools: Unit 1
Unit 1
Introduction
<title>Page Title</title>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
HTML Headings
<html>
<title>Page Title</title>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<img src="E:\shobana\Subjects\ITE\tree.webp" alt="Tree" style="width:1120px;height:950px">
</body>
</html>
BACKGROUND IMAGE
<body background="E:\shobana\Subjects\ITE\Sea.jpg">
ADDING AUDIO to YOUR WEBPAGE
<embed src="E:\image\video1.mp4" height = "350" width="500" autostart="True"></embed>
● Unordered Lists
<ul>
<li> Coffee</li>
<li> Tea </li>
<li> Milk </li>
</ul>
● Ordered List
<ol>
<li value="15">List number 1</li>
<li value="10">List number 2</li>
<li value="20">List number 3</li>
</ol>
● Definition list - contains list of items with a description or definition of each
item
<dl>
<dt>Item number 1</dt>
<dd>Definition or Description for 1st Item</dd>
<dt>Item number 2</dt>
<dd>Definition or Description for 2nd Item</dd>
<dt>Item number 3</dt>
<dd>Definition or Description for 3rd Item</dd>
</dl>
Create a table in HTML
<table>
<tr>
<th>Firstname</th>
<th> Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
</table>
GIVE NAME to ANY SECTION of YOUR WEB PAGE
<!--Text within these tags are not displayed by the Web Browser-->
Style attribute
<p> The <abbr title=”World Health Organization” >WHO </abbr> was founded
in 1948 </p>
Address in the HTML
<address>
MIT.com <br>
India
</address>
Display a webpage inside a webpage
<font face = "Comic sans MS" size =" 5">Comic Sans MS</font><br />
Setting Font Color