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