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