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