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