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