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