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