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