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