blob: 09d2f67accf76bc2f830b1b755ea1b98ec3fcf5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<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>
|