You are on page 1of 3

Write the HTML tags to achieve the following:

1. Create a text link which you can use to send email.


2. Create text link to make your PDF, or DOC or ZIP files downloadable.
3. Make a picture a link.
4. Create a one-line text input field.
5. Create a submit button (for submitting the form)
6. Create Ordered Lists with 4 item by using Letters and starts with d.
7. Create Unordered Lists with 2 items by using.
8. Create a drop-down list with 3 items.
9. Create a link Opens the linked document in the full body of the window.
10. Create a Checkboxes Controls
11. Create a Radio Box Controls
12. Create a Multi-line text input controls

Create a text link with the following Link Colors


 active links green
 and visited links black
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Example</title>
<base href="https://www.tutorialspoint.com/">
</head>
<body alink=" #008000" link="#040404" vlink="#000000">
<p>Click following link</p>
<a href="/html/index.htm" target="_blank" >HTML Tutorial</a>
</body>
</html>

Develop an HTML Page content a table consist of 4 column and 5 rows with the
flowing format.
A. Text red color.
B. First rows Background green color.
C. Second rows Background blue color.
D. Border 3.
E. Title “my new table format”.
F. Fount-family “Caliri”.
G. Marge the last rows
H. Marge the last Column

Answer:
<!DOCTYPE html>
<html>
<head>
<style>

table, th, td {
border: 3px solid black;
border-collapse: collapse;

}
th, td {
padding: 20px;

</style>
</head>
<body>

<table style="width 50%">


<font size="5pt" face="Calibri" color ="red"> "my new table
format".</font>
<tr>
<tr bgcolor="green">
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<tr bgcolor="blue">
<td></td>
<td></td>
<th></th>
<td></td>
<th></th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<th></th>
<th></th>
</tr>
<tr>
</td> <td colspan="8">&nbsp </td rowspan="5">&nbsp;
</tr>
<tr>
</table>

</body>
</html>

You might also like