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