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