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