Use on the webTotal Use [ 5577 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/34dcb2ac3509df8305a3c947d16be3df?family=Yeyey" 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/34dcb2ac3509df8305a3c947d16be3df?family=Yeyey);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Yeyey";
src: url("https://db.onlinewebfonts.com/t/34dcb2ac3509df8305a3c947d16be3df.eot");
src: url("https://db.onlinewebfonts.com/t/34dcb2ac3509df8305a3c947d16be3df.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/34dcb2ac3509df8305a3c947d16be3df.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/34dcb2ac3509df8305a3c947d16be3df.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/34dcb2ac3509df8305a3c947d16be3df.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/34dcb2ac3509df8305a3c947d16be3df.svg#Yeyey")format("svg");
}
2CSS rules to specify fonts
font-family: "Yeyey";