Created
January 21, 2019 03:20
-
-
Save akatgelar/da607710f0f44c2d11294448910478ed to your computer and use it in GitHub Desktop.
CSS #1 - Answer for https://www.testdome.com/questions/html-css/avatar/17548?visibility=17&skillId=3
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> | |
/* 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