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