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