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