23 Aug 2015

CREATE A CSS3 AVATARPROFILE PICTURE EFFECT using HTML and CSS

First create HTML file as given here

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <link rel="stylesheet" href="css/primary.css">
    </head>
    <body>
        <img class="profile" src="images/umair.jpg" alt="Umair">    
    </body>
</html>

Create CSS file as given here

.profile{
    width: 150px;
    height: 150px;
    border-radius: 80px;
    border: 3px solid #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

NOTE: image attached of output   

Share:

0 comments:

Post a Comment