21 lines
No EOL
562 B
HTML
21 lines
No EOL
562 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>Line and paragraph separator rendering</title>
|
|
<style>
|
|
@font-face {
|
|
font-family: test;
|
|
src: url(resources/separator-test-font.ttf) format("truetype");
|
|
}
|
|
p {
|
|
font-size: 30px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>V O</p>
|
|
<p>V
O</p>
|
|
<p>V
O</p>
|
|
|
|
<p style="font-family: test;">V O</p>
|
|
<p style="font-family: test;">V O</p>
|
|
<p style="font-family: test;">V O</p>
|
|
</body> |