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