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