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