Pages

Monday 19 January 2015

how create a glow glass button in photoshope

1.open the photoshop and click the new  and set the height 300px  and width 400px. such as

2. Set the background color black and draw the rectangle with 10px radius .such as


3.Select the layer menu the click the layer style .and click the drop shadow and set the properties







Thursday 15 January 2015

how create a glow button in photoshop.

1.Open the Photoshop.and click the new in file menu  .and insert the height and width such as.

2.Insert the background color Black Such as #000000..
3.Draw the circle .such as



3.Click the Layer Menu and select the layer style .and click the inner glow.  such as


Wednesday 14 January 2015

How create a Form in HTML

<html>
<head>
<title>This is the Form Example</title>
</head>
<body>
<form method= post action=process.html>
 Enter the Student Name:
<input type ="text" size=20 name="sname"/> <br/>
Enter the Student Address:
<textarea name="saddress" cols="10" rows="15"></textarea><br/>
 Enter the Password:
<input type ="password" size=20 name="spass"> <br/>
 Enter the Student Hobbies: cricket
<input type ="checkbox"  name="shobbies" checked="checked">
badminton
<input type ="checkbox"  name="shobbies" checked="checked"><br/>

Select  Student Gender:
Male <input type="radio" value="male" checked="checked" />
Female<input type="radio" value="female" checked="unchecked" />
 </from>
</body>
</html>