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