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