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