You are on page 1of 3

hr / -- horizontal row

<em></em> -- italics
<!-- Comment -->
<a href="google.de"></a>
<img source="" height="150"/>
<table border="1" width="100%" cellpadding="" cellspacing=""><table/> --
<th colspan="2"><th/> -- Table header
<tr><tr/> -- Table row
<td><td/> -- Table data
<></> --
<></>
<style type="text/css">
p{color:blue;
font-family:arial;}
</style>

background-image:url();
background-repeat:no-repeat; (repeat-y)
background-posiition:10px 60px;
right height
background-color:yellow;
padding:20px;
border-color:red;
border-width:3px;
border-style:dashed;
-------------------------
border-top-color:green;
border-top-style:dotted;
border-top-width:4px;
-------------------------
p{ background-color:red;
margin:4px;
}

p{ background-color:red;
color:white;
width:350px;
height:450px;
border: 3px solid black;
}
--------------------------------
a:link{color:red;
text-decoration:none;
}

a:visited{color:green;}

a:hover{bachground-color:blue;
color:white
text-decoration:underline;
font-weight:bold;
}
a:active{
back-grongcolor:orange;
}

<a href="google.de">Google</a>
-------------------------------
ul{list-style-type:square;} (circle,katakana)
ul{list-style-image:url(check.png);}

ul{border: 1px solid red;


list-style-type:none;
padding:0;}

-------------------------------
span{font-weight:bold;
color:gerrn;}

<span></span> --
-------------------------------
div {

border:2px solid red;


position: absolute;
width:300px ;
top: 40px;
left: 35px;
}
-----------------------------

.pclass { color:red;}

<p class="pclass">
kflajlfalsdfkaslfjlksdajflkajsdflkajdlkgjaoierjpa#fd#alfa#lflaksdlfklasf<p/>

-------------------------------
#bobby{border:;
position:absolute;
top:;
left:;}

<div id="bobby">
kflajlfalsdfkaslfjlksdajflkajsdflkajdlkgjaoierjpa#fd#alfa#lflaksdlfklasf<div/>
--------------------------------
p > a {
color: red;
font-size:30px;
}

<p> <a href="bing.com"> Yahoo </a> <p/>


--------------------------------
p:firstletter {
font-weight:bold;
color: green;
font-size:30px;
}

<p> the germany <p/>


<p> the india <p/>
<p> indo german <p/>
-------------------------------
img {max-height:200px;
max-width:200px;
}
<img src= "" />
<img src= "" />
<img src= "" />

--------------------------------
<form>
Username: <input type="text" name="username" size= "15" maxlength="5"
value="Enter your name here"/>
<br/>
Male: <input type="radio" name="sex" value="male"/>
Female: <input type="radio" name="sex" value="female"/>
<br/>
<p>Select the meet items<p/>
Lamb: <input type="checkbox" name="food" value="lamb"/>
Chicken: <input type="checkbox" name="food" value="chicken"/>
Fish: <input type="checkbox" name="food" value="fish"/>
Rabbit: <input type="checkbox" name="food" value="rabbit"/>

<form/>
---------------------------------
<form>
<select name="activities">
<option value="play"> play the guitar </option>
<option value="bat"> play the cricket </option>
<option value="ball"> play the football </option>
<option value="striker"> play the caromboard </option>
<select/>
<form/>
---------------------------------
<form>
Tell me about yourself:
<texarea name="bio" rows="8" cols="40">
Type something here

</textarea>
<form/>
---------------------------------
<form>
Password: <input type="password" name="pword" />
<p>Now submit file</p>
<input type="file" name="buckysfile">
<form/>
---------------------------------
<form action="dosomething" method="post">
Usename: <input type="text" name="username" />
<br/>
Password: <input type="password" name="pass" />
<br/>
<input type="submit" value="submit">
<form/>
---------------------------------

You might also like