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