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