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