16 lines
216 B
HTML
16 lines
216 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
.circle {
|
|
width: 140px;
|
|
height: 140px;
|
|
border-radius: 70px;
|
|
background: green;
|
|
transform: rotate(15deg);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="circle"></div>
|
|
</body>
|
|
</html>
|