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