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