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