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