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