HTML第二次,百度

<!DOCTYPE html>
<html >
<head>
    <meta charset="UTF-8">
    <title>百度</title>
    <style type="text/css">
        #middle{
            position: absolute;
            margin-left: 35%;
            width:30%;
            height: 100%;

        }
        #search{
            width: 95%;
            margin-left: 0px;
            height: 50px;

        }
        #input{
            width: 80%;
            margin-left: 0px;
            height: 49px;
        }
        #button{
            width: 15%;
            height: 50px;
            color: white;
            background-color: blue;
            border: 0px;

        }
        #button:hover{
            background-color: darkseagreen;
        }





    </style>
</head>
<body>
    <div >
        <div  >
            <img src="baidu.png"/>
        </div>
        <div >
            <input ></input>
            <button >百度一下</button>
        </div>

    </div>

</body>
</html>