Skip to content

Instantly share code, notes, and snippets.

@dhanyn10
Created January 18, 2019 10:39
Show Gist options
  • Save dhanyn10/5bcfb07928c8ed035dfa81a02a67283b to your computer and use it in GitHub Desktop.
Save dhanyn10/5bcfb07928c8ed035dfa81a02a67283b to your computer and use it in GitHub Desktop.
test frontend developer jds soal css 1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Avatar</title>
<style>
.avatar{
width: 150px;
height: 150px;
border: 2px solid gray;
-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