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