mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
39 lines
802 B
HTML
39 lines
802 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Localized font family names (ref)</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
margin: 50px;
|
|
font-size: 24px;
|
|
}
|
|
|
|
#test49 { font-family: "STHeiti"; }
|
|
#test51 { font-family: "STSong"; }
|
|
#test52 { font-family: "Sazanami Gothic"; }
|
|
#test53 { font-family: "Sazanami Mincho"; }
|
|
#test54 { font-family: "SimHei"; }
|
|
#test55 { font-family: "SimSun"; }
|
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<p id="test49">华文黑体 STHeiti</p>
|
|
<p id="test51">华文宋体 STSong</p>
|
|
<p id="test52">さざなみゴシック Sazanami Gothic</p>
|
|
<p id="test53">さざなみ明朝 Sazanami Mincho</p>
|
|
<p id="test54">黑体 SimHei</p>
|
|
<p id="test55">宋体 SimSun</p>
|
|
|
|
</body>
|
|
</html>
|