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