Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 18, 2018 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/80d21e287ff64e5c61a836cb5db06c62 to your computer and use it in GitHub Desktop.
Save uno-de-piera/80d21e287ff64e5c61a836cb5db06c62 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Buscador php</title>
<style type="text/css">
.busc{width:260px; background-color:#0000FF; color:#fff; border:1px solid #fff; margin: 80px 0px 0px 480px; height:100px; border-radius: 0px 8px 0px 8px}
input[type=text]{background-color:#000; color:#fff; border-radius: 3px; margin:0px 0px 0px 20px}
input[type=submit]{background-color:#000000; color:#fff; border-radius: 3px}
h3{text-align:center}
</style>
</head>
<body>
<div class="busc">
<h3>Escribe tu búsqueda</h3>
<form name="form" action="resultados.php" method="get">
<input type="text" name="s" />
<input type="submit" value="Buscar" title="Buscar" />
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment