Rounded Corners in HTML
Previously, rounded corners in HTML was a difficult job, since we were obliged to use images and complex html to build a small section with rounded corners. After doing some research, I found a small method to design the div and give it a rounded corner shape: .rounded-corners { -moz-border-radius: 20px; -webkit-border-radius: 20px; -khtml-border-radius: 20px;…