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