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