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