mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-13 11:10:13 +01:00
34 lines
563 B
HTML
34 lines
563 B
HTML
<html>
|
|
<head>
|
|
<title>!</title>
|
|
<style>
|
|
td{ background-color: #CCDDFF;
|
|
border: 1px solid black;
|
|
margin: 1px;
|
|
padding: 1px;}
|
|
img{ background-color: silver;
|
|
width: 120px;
|
|
height: 20px;
|
|
border: 1px solid black;
|
|
margin: 2px;
|
|
padding: 2px;}
|
|
input{background-color: #CCAAFF;
|
|
margin: 1px;
|
|
padding: 1px;}
|
|
</style>
|
|
</head>
|
|
<body bgcolor=white>
|
|
|
|
the purple text input control must be in the same line with the grey image
|
|
|
|
<table>
|
|
<tr>
|
|
<td><input type=text name=keyword><img></td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
</body>
|
|
</html>
|
|
|