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