asadkhan7865571 / asadwebsite

https://asadwebsite.vercel.app
1 stars 0 forks source link

Tips ✨ #1

Open iambhvsh opened 4 hours ago

iambhvsh commented 4 hours ago

When you add source or paths of some files make sure the path is always in lowercase letters, also don't create much Stylesheets and Javascript files instead create a one single file like for eg. style.css and javascript file script.js and write all your code in those files by dividing them using comments like this:


body {
    // Some code here
}

navbar {
   // Some code here
}

// Other part which you want to divide after this comments like grids, layouts, etc

video-grid {
    // Some code here
}

Same goes with Javascript also!


Thank you, iambhvsh 🩷

asadkhan7865571 commented 4 hours ago

Noted Bhavesh! I was planning to do it soon. Thanks for highlighting it.