<!DOCTYPE html><html><head><meta charset="UTF-8">
<style>
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body {
  font-family: 'Noto Sans Japanese';
  margin: 0;
}
div {
  background: #ABCDEF;
  color: white;
  font-size: 36px;
  height: calc(96px * 4 - 10px * 2);
  line-height: 1.75;
  overflow: hidden;
  padding: 10px 20px;
  width: calc(96px * 10 - 20px * 2);
}
</style>
</head>
<body>
<div>
  height: 4インチ(96ピクセル * 4)<br>
  width: 10インチ(96ピクセル * 10)<br>
  ウェブフォント: Noto Sans Japanese (Google Fonts)
</div>
</body>
</html>