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