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