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