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