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