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