Web Search Engine Box using html and css styles :
<html>

<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8">
<style type="text/css">
body{
margin-top: 180px;
text-align: center;
}
#tf{
border: solid 2px darkcyan;
}
h1{
color: cornflowerblue;
font-family: cursive;
}
#button{
color: white;
background-color:blue;
border: sloid 1px #aaaaaa;
cursor: pointer;
width: 60px;
height: 25px;
}
</style>
</head>
<body>
<h1>Web Search</h1>
<form name="cse"action="http://www.google.com/cse">
<input name="q" type="text" size="45" id="tf" />
<input type="submit" name="sa" value="Search" id="button" />
</form>
</body>
</html>
output :
No comments:
Post a Comment