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