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