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