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