Customization
Learn how to create your own style without changing the theme’s core files so you can take advantage of future updates.
How to include a typeface?
Add or change Digimax typography with the following instructions.
Import the stylesheet
@import urlfrom"assets/css/style.css"to change Google Font.<!-- google fonts --> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&family=Roboto:wght@300;400&display=swap')Open
"assets/css/style.css"files and simply replace thefont-familyfrom<body>and<heading>tag with yours.body { font-family: 'Poppins', sans-serif; } h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; } p { font-family: 'Roboto', sans-serif; }
How to change logo?
To change logo simply go to "assets/img/logo/logo.png". Then place your logo here.
<!-- Logo -->
<a class="navbar-brand" href="#">
<img class="logo" src="assets/img/logo/logo.png" alt="">
</a>
Dynamic Contact Form
We have create dynamic contact form for you to easily start your business & contact with your clients. You just have to change your desired email address here "assets/php/mail.php."
// Set the recipient email address.
// FIXME: Update this to your desired email address.
$recipient = "hridoy1272@gmail.com";