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