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