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