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