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