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