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