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