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