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