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