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