Excellent Keyboard Design Create by Using This Code

Ticker

10/recent/ticker-posts

Excellent Keyboard Design Create by Using This Code

Create A Effective Keyboard With Maa Blogger Program Source Codes


HTML Code

<!DOCTYPE html>

<html lang="en" dir="ltr">

  <head>

    <meta charset="utf-8">

    <title>Keyboard Design</title>

    <link rel="stylesheet" href="style.css">

  </head>

  <body>

    <div class="container">

      <div class="wrapper">

<div class="keys">

  <input type="button" value="`">

  <input type="button" value="1">

          <input type="button" value="2">

          <input type="button" value="3">

          <input type="button" value="4">

          <input type="button" value="5">

          <input type="button" value="6">

          <input type="button" value="7">

          <input type="button" value="8">

          <input type="button" value="9">

          <input type="button" value="0">

          <input type="button" value="-">

          <input type="button" value="=">

          <input type="button" value="Backspace">

        </div>

        <div class="keys">

  <input type="button" value="Tab             ">

  <input type="button" value="Q">

          <input type="button" value="W">

          <input type="button" value="E">

          <input type="button" value="R">

          <input type="button" value="T">

          <input type="button" value="Y">

          <input type="button" value="U">

          <input type="button" value="I">

          <input type="button" value="O">

          <input type="button" value="P">

          <input type="button" value="[">

          <input type="button" value="]">

          <input type="button" value="\">

        </div>

        <div class="keys">

          <input type="button" value="Caps Lock    ">

 <input type="button" value="A">

          <input type="button" value="S">

          <input type="button" value="D">

          <input type="button" value="F">

          <input type="button" value="G">

          <input type="button" value="H">

          <input type="button" value="J">

          <input type="button" value="K">

          <input type="button" value="L">

  <input type="button" value=";">

  <input type="button" value="'">

  <input type="button" value="     Enter">

        </div>

        <div class="keys">

          <input type="button" value="Shift                 ">

  <input type="button" value="Z">

          <input type="button" value="X">

          <input type="button" value="C">

          <input type="button" value="V">

          <input type="button" value="B">

          <input type="button" value="N">

          <input type="button" value="M">

  <input type="button" value=",">

  <input type="button" value=".">

  <input type="button" value="/">

  <input type="button" value="               Shift">

        </div>

        <div class="keys">

          <input type="button" value="Ctrl">

  <input type="button" value="Win">

  <input type="button" value="Alt">

  <input type="button" value="SPACE">

  <input type="button" value="Alt">

  <input type="button" value="Win">

  <input type="button" value="Ctrl">

        </div>

      </div>

    </div>

  </body>

</html>


CSS Code 

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url(http://www.pngmagic.com/product_images/yellow-color-best-background-images-sm.jpg);
  flex-direction: column;
}
.container{
  width: 60%;
}
.wrapper{
  min-width: 1050px;
  max-width: 1500px;
  padding: 1px;
  border-radius: 1px;
  background: url(https://static.vecteezy.com/system/resources/previews/000/632/964/non_2x/blue-round-winner-podium-on-blue-background-stage-with-studio-lights-for-awards-ceremony-spotlights-illuminate-vector-illustration.jpg);
  box-shadow: -3px -3px 7px #ffffff73,
               2px 2px 5px rgba(94,104,121,0.288);
  background: url(https://static.vecteezy.com/system/resources/previews/000/632/964/non_2x/blue-round-winner-podium-on-blue-background-stage-with-studio-lights-for-awards-ceremony-spotlights-illuminate-vector-illustration.jpg);
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5),
              -3px -3px 7px rgba(255,255,255,0.05);
}
.wrapper .keys{
  display: flex;
  justify-content: center;
}
.wrapper .keys input{
  height: 50px;
  min-width: 50px;
  padding: 10px;
  border: none;
  outline: none;
  background: #dde1e7;
  box-shadow: -3px -3px 7px #ffffff73,
               2px 2px 5px rgba(94,104,121,0.288);
  background: #131419; */
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5),
              -3px -3px 7px rgba(255,255,255,0.05);
  margin: 7px;
  color: white;
  color: #ff0000;
  font-size: 20px;
  border-radius: 5px;
  cursor: default;
}
.wrapper .keys input:focus{
  font-size: 19px;
  color: #3498db;
  box-shadow: inset -3px -3px 7px #ffffff73,
              inset 2px 2px 5px rgba(94,104,121,0.288);
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5),
              inset -3px -3px 7px rgba(255,255,255,0.05);
}
.wrapper .keys input[value="SPACE"]{
  width: 52%;
}


Keyboard Screen Display



Post a Comment

39 Comments