Saturday, September 25, 2021

Html Search bar With CSS icon/image Style

 Html Search bar With CSS icon/image Style Code

<!DOCTYPE html>>

<html>


<head>

    <meta charset="utf-8">

    <meta name="viewport" content="width=device-width, initial-scale=1">

    <link rel="stylesheet" type="text/css" href="nav.css">

    <title>Html Form</title>

</head>


<body>

  <P>input with icon/image</P>

  <form>

      <input type="text"id="search"name="search"placeholder="Search">

  </form>

</body>


</html>


CSS ICON/IMAGE STYLE CODE

input[type=text]{

   width:100%;

   box-sizing: border-box;

   border:2px solid #ccc;

   border-radius:4px;

   font-size:16px;

   background-color: white;

   background-image:url('searchicon.png');

   background-position:10px 10px;

   background-repeat: no-repeat;

   padding:12px 20px 12px 40px;

}

No comments:

Post a Comment

JavaScript Animated

  JavaScript Animated <!DOCTYPE html> <html> <style> #myContainer {   width: 400px;   height: 400px;   position: relative;...