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