Use on the webTotal Use [ 3707 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/51796fdc51a34e5705215c274109fc1d?family=See+You+At+The+Movies+2%3A+Revenge+%26+Retribution" 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/51796fdc51a34e5705215c274109fc1d?family=See+You+At+The+Movies+2%3A+Revenge+%26+Retribution);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "See You At The Movies 2: Revenge & Retribution";
src: url("https://db.onlinewebfonts.com/t/51796fdc51a34e5705215c274109fc1d.eot");
src: url("https://db.onlinewebfonts.com/t/51796fdc51a34e5705215c274109fc1d.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/51796fdc51a34e5705215c274109fc1d.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/51796fdc51a34e5705215c274109fc1d.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/51796fdc51a34e5705215c274109fc1d.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/51796fdc51a34e5705215c274109fc1d.svg#See You At The Movies 2: Revenge & Retribution")format("svg");
}
2CSS rules to specify fonts
font-family: "See You At The Movies 2: Revenge & Retribution";