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