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