Skip to content

Instantly share code, notes, and snippets.

@akatgelar
Created January 21, 2019 03:20
Show Gist options
  • Save akatgelar/da607710f0f44c2d11294448910478ed to your computer and use it in GitHub Desktop.
Save akatgelar/da607710f0f44c2d11294448910478ed to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Avatar</title>
<style>
/* Write your CSS solution here (do not edit the surrounding HTML) */
.avatar{
border-radius: 50%;
border-style: solid;
border-width: 2px;
border-color: grey;
width: 150px;
height: 150px;
}
</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