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