mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
22 lines
302 B
HTML
22 lines
302 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>PageSerializer Font Test</title>
|
|
<style>
|
|
@font-face {
|
|
font-family: "URL Font";
|
|
src: url("font.ttf") format("truetype");
|
|
}
|
|
p {
|
|
font-family: "URL Font";
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<p>PageSerializer Font Test</p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|