You are on page 1of 7

CREATING LISTS AND TABLES

<!DOCTYPE html>

<html>

<head>

<title>DTW Course work</title>

</head>

<body>

<h1>List and Tables</h1>

<p>Creating lists and tables in websites</p>

<ul>

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

<li>Juice</li>

</ul>

<ol>

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

<li>Juice</li>

</ol>

<dl>

<dt>Coffee</dt>

<dd>Black coffee, Milk coffee, Cold coffee</dd>

<dt>Tea</dt>

<dd>Black tea, Milk Tea, Ice tea</dd>

<dt>Juice</dt>

<dd>Apple juice, Orange juice, Mango juice</dd>


</dl>

<h2>Creating Table</h2>

<table style="width:100">

<table>

<style>

table, th, td

border:1px Solid black

<td>

text align: center

td

th, td

padding:20px

</style>

<tr>

<th>coffee</th>

<th>Tea</th>

<th>Juice</th>

</tr>

<tr>

<td>Black coffee</td>

<td>Black Tea</td>

<td>Orange juice</td>

</tr>
<tr>

<td>Milk coffee</td>

<td>Milk tea</td>

<td>Apple juice</td>

</tr>

<tr>

<td>Cold coffee</td>

<td>Ice tea</td>

<td>Mango juice</td>

</tr>

</table>

</body>

</html>

OUTPUT
ADDING IMAGE AND WEBLINKS
<!DOCTYPE html>

<html>

<head>

<title> DTW course work</title>

</head>

<h1> KL UNIVERSITY</h1>

<p>K L Deemed to be University, formerly Koneru Lakshmaiah College of Engineering


and

Koneru Lakshmaiah University, is a higher educational institution Deemed to be


University

<br><br>

<i> ADDRESS: Green Fields, Vaddeswaram, Andhra Pradesh 522302</i><br><br>

<mark>according to NIRF ranking KL UNIVERSITY is in 27th place.


</mark><br><br>

<a href="https://www.kluniversity.in/">click to open kluniversity website

<img src="klu.jpg">

</body>

OUTPUT
ADDING AUDIO AND VIDEO

<!DOCTYPE html>

<html>

<head>

<title>DTW course work</title>

</head>

<video controls>

<source src=”shinchan2.mp4” type=”video/mp4”>

<audio controls>

<source src=”shinchansong.mp3” type=”audio/mpeg”>

</audio>

</body>

</html>

OUTPUT

You might also like