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