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