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