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