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