17 lines
322 B
HTML
17 lines
322 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
@font-face {
|
|
font-family: test;
|
|
src: url(../fonts/sil/CharisSIL-R.ttf);
|
|
}
|
|
#test {
|
|
font: 100px test, serif;
|
|
-webkit-text-fill-color: transparent;
|
|
-webkit-text-stroke-color: blue;
|
|
-webkit-text-stroke-width: 2px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="test">office</div>
|