Created
March 3, 2025 20:08
-
-
Save bunlongheng/145d4165da426be96363a72e50ba83de to your computer and use it in GitHub Desktop.
HTML Preview
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 name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
.circle { | |
height: 50px; | |
width: 50px; | |
background-color: #555; | |
border-radius: 50%; | |
} | |
</style> | |
</head> | |
<body> | |
<h2>Circle CSS</h2> | |
<div class="circle"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment