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