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