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