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