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