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