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