mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
263 B
HTML
22 lines
263 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<style>
|
|
@font-face {
|
|
font-family: emoji;
|
|
src: url("../fonts/emoji.ttf");
|
|
}
|
|
|
|
span {
|
|
font-family: emoji;
|
|
font-size: 25pt;
|
|
color: yellow;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span></span>
|
|
</body>
|
|
</html>
|