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