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