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