Answers for "How to make minecraft block in css and html"

1

How to make minecraft block in css and html

<style>
  red{
    background-color:red;
    height: 8px;
    width: 8px;
  }
  orange{
    background-color:orange;
    height: 8px;
    width: 8px;
  }  
  yellow{
    background-color:yellow;
    height: 8px;
    width: 8px;
  }  
  green{
    background-color:green;
    height: 8px;
    width: 8px;
  }  
  blue{
    background-color:blue;
    height: 8px;
    width: 8px;
  } 
  navy{
    background-color:navy;
    height: 8px;
    width: 8px;
  }  
  purple{
    background-color:purple;
    height: 8px;
    width: 8px;
  }
</style>
<div class="red"></div>
<div class="orange"></div>
<div class="yellow"></div>
<div class="green"></div>
<div class="blue"></div>
<div class="navy"></div>
<div class="purple"></div>
Posted by: Guest on August-31-2021

Code answers related to "How to make minecraft block in css and html"

Browse Popular Code Answers by Language