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