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