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