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