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