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