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