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