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