Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to change an existing website to bootstrap [closed]

So I have a html ,css , and javascript files, they all form a tiny little web app which is required for a homework for my web app course, part of my homework is to make a bootstrap version off the web i just made.

My question is how do I convert my code to bootstrap to make my web responsive? what tricks/shortcuts can I take?

like image 708
Ali Elgazar Avatar asked Sep 11 '14 18:09

Ali Elgazar


People also ask

What are the two main ways you can add Bootstrap to your website?

There are two ways to start using Bootstrap on your own web site. You can: Download Bootstrap from getbootstrap.com. Include Bootstrap from a CDN.

What does it mean to Bootstrap a website?

What is Bootstrap? Bootstrap is a free, open source front-end development framework for the creation of websites and web apps. Designed to enable responsive development of mobile-first websites, Bootstrap provides a collection of syntax for template designs.


1 Answers

You should read bootstrap documentation here: http://getbootstrap.com/css/

I'll recommend you to start by choosing what type of container your content will be using: normal one, or fluid (100% browser width). With this defined, you can start putting some responsive grid classes on your div's.

like image 102
ebpo Avatar answered Oct 02 '22 10:10

ebpo