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