Tags List

You might also like

Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 3

In reference to your email below, I hereby acknowledge the details mentioned.

TAGS USED IN HTML <html> <title> <p> <b> or <strong> <i> or <em> <u> <font face="Magneto" size=50 color="red"> <h1> <br> <!---> <h2> <h3> <h4> <h5> <h6>

<body bgcolor="yellow"> <body background="Image.gif"> <a href="file name/path/url">IBA website</a> Open in same window <a href=file name/path/url target="_blank">abcdef</a> Open in new window <a href="mailto:abc@email.com">abcdef</a> Email <img src="sunset.jpg" width=30 border=0> <p align="center"> <p align="right"> <p align="left"> <ol> <ul> <li> &nbsp For space &cent &pound &yen &sect &copy &reg <table border="1" bgcolor="Red" background="clouds.jpg" bordercolor="black"> <caption> Table Caption <th> Table Heading <tr> Table Row <td> Table Data <th colspan="2"> <th rowspan="2"> <td align="left"> <form> <input type="text" "radio" "checkbox" "file" "submit" name="FName">

value="Male" value="Car" Value="Submit"

no name

<select name="country"> <option value="PK">Pakistan</option> </select>

<textarea rows="5" cols="5"> </textarea>

TAGS USED IN CSS <head> <link rel="stylesheet" type="text/css" href="mystyle.css"> </head> body {color:red; background:blue} p{text-align:center; color:yellow; font-family:algerian} <head> <style type="text/css"> p {margin-left: 20px} </style> </head> h1,h2,h3,h4,h5,h6 {color:green} p.p1 {text-align: right} p.p2 {text-align: center} p.f1{font-style:oblique;} p.f2{font-style:normal;} p.f3{font-style:italic;} <p class="p1"> This paragraph will be right-aligned. </p> /* This is another comment */ body { background-image:url('sunset.jpg'); background-repeat:no-repeat; background-position:center; background-attachment:fixed; } h1 h2 h3 h4 {text-decoration:overline;} {text-decoration:line-through;} {text-decoration:underline;} {text-decoration:blink;}

p {font-size:40px;} h1 {font-size:40px;} a:link {color:blue;} a:visited {color:pink;} a:hover {color:yellow;} a:active {color:red;} table, th, td { border: 1px solid black; } th { background-color:green; color:white; } /* unvisited link */ /* visited link */ /* mouse over link */ /* selected link */

You might also like