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