HTML & CSS Web Design
Html Css > Code Examples
Input color
Input color
<head>
<title>Input Color</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style rel="stylesheet" type="text/css">
input {
border: 1pt solid red;
font: normal 20px arial;
color: green;
margin: 0px 0px 8px 0px;
}
.search {
padding: 8px;
font-size: 0.8em;
color: blue;
}
</style>
</head>
<body>
<div class="search">
<p><strong>Search: </strong><br />
<br />
<input type="text" size="25" />
<input type="submit" name="Search" value="Search" />
</p>
</div>
</body>
</html>