mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
27 lines
363 B
HTML
27 lines
363 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<head>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: foo;
|
|
src: url(resources/svg-glyph-extents.otf);
|
|
}
|
|
body {
|
|
font-family: foo;
|
|
font-size: 10px;
|
|
}
|
|
div {
|
|
display: inline-block;
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>A</div>
|
|
<div>B</div>
|
|
<div>C</div>
|
|
<div>D</div>
|
|
</body>
|
|
</html>
|