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