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