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