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