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