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