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