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