1. Point

        .point{
            width: 10px;
            height: 10px;
            background: black;
            border-radius: 50%;
        }
    
  2. Line

    1. Staight Line

          .line{
              width: 100px;
              border: 2px solid black;
          }
      
    2. Double Line

          .double-line{
              width: 100px;
              height: 2px;
          }
      
    3. Slant/ Angled Line

          .double-line{
              width: 100px;
              height: 2px;
          }
      
          .slant{
              transform: rotate(30deg);
          }
      
  3. Square

        .square{
            width: 100px;
            height: 100px;
        }
    
  4. Rectangle

        .square{
            width: 100px;
            height: 100px;
        }
    
  5. Round

    1. Circle

          .circle{
              width: 100px;
              height: 100px;
              border-radius: 50%;
          }
      
    2. Oval

          .oval{
              width: 100px;
              height: 50px;
              border-radius: 50%;
          }
      
    3. ARC

          .arc{
              width: 100px;
              height: 100px;
              border-top-left-radius: 100%;
          }