Untitled
unknown
plain_text
3 years ago
616 B
9
Indexable
<!DOCTYPE html>
<html>
<head>
<title>Folded Corner Template</title>
<style>
.page {
width: 8.5in;
height: 11in;
background-color: white;
position: relative;
overflow: hidden;
}
.corner {
width: 0;
height: 0;
border-top: 2.5in solid transparent;
border-right: 2.5in solid white;
position: absolute;
right: 0;
bottom: 0;
transform: rotateX(60deg);
transform-origin: bottom right;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<div class="page">
<div class="corner"></div>
<!-- Your page content goes here -->
</div>
</body>
</html>
Editor is loading...