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