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