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