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