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