This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<style> | |
@page { | |
size: 210mm 210mm; | |
marks: crop cross; | |
bleed: 3mm; | |
margin: -3mm; | |
} | |
body { | |
margin: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<style> | |
@page { | |
margin: -8px; | |
bleed: 12px; | |
marks: crop cross; | |
background-color: cyan; | |
background-image: url(https://avatars.githubusercontent.com/u/8237330?s=200&v=4); | |
} | |
img { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Test Document</title> | |
</head> | |
<body> | |
<h1>Test Document</h1> | |
<p>This is a test document.</p> | |
<p>Link with wrong %-encoding in the fragment part: <a href="https://example.com/#wrong%encoding">"https://example.com/#wrong%encoding"</a></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Test</title> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP'); | |
p { | |
width: 10em; | |
font-family: "Noto Sans JP", sans-serif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Variable Font Test</title> | |
<style> | |
@font-face { | |
font-family: "VF"; | |
src: url("https://cdn.jsdelivr.net/gh/notofonts/notofonts.github.io/fonts/NotoSans/full/variable-ttf/NotoSans[wdth,wght].ttf"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<script> | |
fetch('https://raw.githubusercontent.com/vivliostyle/themes/main/LICENSE') | |
.then(response => response.text()) | |
.then(text => { | |
document.body.textContent = text; | |
}); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<style> | |
.unhinted-otf { | |
font-family: "unhinted-otf", serif; | |
} | |
.hinted-ttf { | |
font-family: "hinted-ttf", serif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
:root { | |
font-family: "Noto Sans CJK JP", sans-serif; | |
line-height: 1.5; | |
} | |
dd { | |
font-family: "Arial", serif; | |
} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<style> | |
div:nth-child(2) { | |
font-family: "Noto Sans CJK JP"; | |
} | |
div:nth-child(3) { | |
font-family: "Noto Serif CJK JP"; | |
} | |
div:nth-child(4) { |