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