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