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