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