Personal Blog

Tag: #webdesign

Programming

Tips About Web Design Projects

You may be a Freelance Web Designer (Front-End Designer) or Developer (Back-End Programmer) or both: a Full-Stack Developer. First step through a successful web design project is understanding the purpose of design and audience. It may have been a design for all ranges or a specific partition of people. It may be a general-purpose website or dedicated to special purpose(s). Second: you have to arrange a contract. No step must be taken unless it is documented into a contract. Even…
Continue reading →
Programming

How to fix Bootstrap 5 in Dreamweaver

You know, if you want to use Bootstrap in Dreamweaver, it can be automatically done. Download bootstrap zip file from: https://getbootstrap.com/Put CSS and JS folder of Bootstrap in your root folderCreate New SiteCreate a file -> Select Bootstrap -> Attach Bootstrap.css file on the dialog below 5. Now Dreamweaver automatically will add line below to header: <link href="css/bootstrap.min.css" rel="stylesheet"> and these lines to footer of the page: <script src="js/jquery-3.4.1.min.js"></script> <script src="js/popper.min.js"></script> <script src="js/bootstrap.min.js"></script> Note: Some JavaScript function doesn't work in…
Continue reading →
Back to top