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