<!DOCTYPE html>
<title>My Example</title>
<style>
.rotated {
transform: rotate(15deg);
}
div {
padding: 20px;
margin: 20px;
width: 120px;
background: limegreen;
color: white;
font-family: sans-serif;
</style>
<div class="rotated">
Rotated.
</div>
<div>
Not rotated.