+ 1
Class tags not visible on my website
I bought a template from casethemes (https://demo.casethemes.net/consultio-finance2/) now while using same tags as their demo site i cant get the classes executed and shown as broken. Am i missing some libraries to integrate? Below are few classes arent working and showing as broken images on my side but works fine on demo page. <i class="zmdi zmdi-close"></i> <i class="fac fac-search"></i> <i aria-hidden="true" class="flaticon flaticon-social-media"></i> <i aria-hidden="true" class="flaticon flaticon-report"></i>
2 odpowiedzi
+ 3
<!doctype html>
<html>
<head>
<title></title>
<link href="https://demo.casethemes.net/consultio-finance2/" rel="stylesheets">
</head>
<body>
<i class="zmdi zmdi-close"></i>
<i class="fac fac-search"></i>
<i aria-hidden="true" class="flaticon flaticon-social-media"></i>
<i aria-hidden="true" class="flaticon flaticon-report"></i>
</body>
</html>
+ 2
If the above code doesn't work. I recommend you use material icons or font awesome codes
Material icons
<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="https://fonts.googleapis.com/icon?family=material+icons" rel="stylesheet">
</head>
<body>
<i class="material-icons">search</i>
<i class="material-icons">close</i>
<i class="material-icons">palette</i>
</body>
</html>
Font Awesome
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<i class="fa fa-search"></i>
<i class="fa fa-whatsapp"></i>
<i class="fa fa-bars"></i>
</body>
</html>