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