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