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