34 lines
687 B
HTML
34 lines
687 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
<style>
|
|
.box {
|
|
margin: 300px;
|
|
height: 200px;
|
|
width: 200px;
|
|
background: green;
|
|
font-size: 40px;
|
|
position: relative;
|
|
transform:translate(10px,20px) rotate(37deg) scale(1.5, 2);
|
|
}
|
|
|
|
.dot {
|
|
height:10px;
|
|
width: 10px;
|
|
position: absolute;
|
|
left: 181px;
|
|
top:50px;
|
|
background: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div class="dot"></div>
|
|
</div>
|
|
</body>
|
|
</html> |