<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" media="screen,print">
<title>縫い目のようなデザイン</title>
<style type="text/css">
div {
background: #036;
display: inline-block;
box-shadow: 1px 1px 0 rgba(0,0,0,0,5);
color: #ff9;
margin: 10px;
outline: 1px dashed #fff;
outline-offset: -5px;
padding: 10px;
transform: rotate(-5deg);
}
h1 {
font-family:"Courier New", Courier, monospace;
margin: 0;
}
</style>
</head>
<body>
<div>
<h1>Stitched</h1>
</div>
<div>
<h1>Stitched</h1>
</div>
<div>
<h1>Stitched</h1>
</div>
</body>
</html>