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