mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
23 lines
426 B
HTML
23 lines
426 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<style>
|
|
@font-face {
|
|
font-family: Ahem;
|
|
src: url(../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;
|
|
src: url(../fonts/Ahem.ttf);
|
|
}
|
|
p { font-family: Ahem2; color: blue }
|
|
</style>
|
|
Second
|
|
</p>
|
|
<p id=c>Third</p>
|
|
</body>
|