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