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