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