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