Use on the webTotal Use [ 5021 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/4765d54c4286cd9a5564dc3969dd05bf?family=Stefani+EHYO+W00+Outline" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/4765d54c4286cd9a5564dc3969dd05bf?family=Stefani+EHYO+W00+Outline);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Stefani EHYO W00 Outline";
src: url("https://db.onlinewebfonts.com/t/4765d54c4286cd9a5564dc3969dd05bf.eot");
src: url("https://db.onlinewebfonts.com/t/4765d54c4286cd9a5564dc3969dd05bf.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/4765d54c4286cd9a5564dc3969dd05bf.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/4765d54c4286cd9a5564dc3969dd05bf.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/4765d54c4286cd9a5564dc3969dd05bf.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/4765d54c4286cd9a5564dc3969dd05bf.svg#Stefani EHYO W00 Outline")format("svg");
}
2CSS rules to specify fonts
font-family: "Stefani EHYO W00 Outline";