Skip to content

Instantly share code, notes, and snippets.

@azulkipli
Last active January 4, 2019 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azulkipli/bad8eb21e3e31961b862b6325a146805 to your computer and use it in GitHub Desktop.
Save azulkipli/bad8eb21e3e31961b862b6325a146805 to your computer and use it in GitHub Desktop.
JDS_CSS#1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Avatar</title>
<style>
.avatar {
width: 150px;
height: 150px;
float: left;
margin-top: 1em;
margin-right: 1em;
position: relative;
border: solid 2px grey;
-webkit-border-radius:50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
</style>
</head>
<body>
<img class="avatar" src="https://goo.gl/khGCrk" alt="avatar" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment