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