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