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