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