mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
426 B
HTML
24 lines
426 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<style>
|
|
@font-face {
|
|
font-family: Ahem;
|
|
url: src(../fonts/Ahem.ttf);
|
|
}
|
|
#a { font-family: Ahem }
|
|
#c { font-family: Ahem2 }
|
|
</style>
|
|
<p id=a>First</p>
|
|
<p>
|
|
<style scoped>
|
|
@font-face {
|
|
font-family: Ahem2;
|
|
url: src(../fonts/Ahem.ttf);
|
|
}
|
|
p { font-family: Ahem2; color: blue }
|
|
</style>
|
|
Second
|
|
</p>
|
|
<p id=c>Third</p>
|
|
</body>
|