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