<!DOCTYPE html> <html> <head> <style> .round { border-radius: 15px; } .circle { border-radius: 50%; } </style> </head> <body> <h2>Rounded Image</h2> <p>Round pictures may be generated by using the border-radius attribute:</p> <img src="examples/resources/css3-3d7.png" class="round" alt="heart"> <p>Circle pictures may be generated by using the border-radius attribute:</p> <img src="examples/resources/css3-3d7.png" class="circle" alt="heart"> </body> </html>