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