blob: d98885f59739dd8992777e8145b5a0676b80f93a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<head>
<style>
.circle {
width: 140px;
height: 140px;
border-radius: 70px;
background: green;
}
</style>
</head>
<body>
<div class="circle"></div>
</body>
</html>
|