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