Created
January 18, 2019 10:39
-
-
Save dhanyn10/5bcfb07928c8ed035dfa81a02a67283b to your computer and use it in GitHub Desktop.
test frontend developer jds soal css 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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