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