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