#!/usr/bin/env python # coding: utf-8 # # Goal - Bootstrap! # # * Learn how to make your web page look good # * Learn how to add css and javascript files to your project # # ### What is Boostrap? # # It's basically a web framework which lets you quickly create button, menus, forms, and many other stuff quickly. Go ahead and run lesson 4 and you will see visually it looks much better than the other lessons we have covered so far. # ### How to get bootstrap? # # Just navigate to their main [webpage](http://getbootstrap.com/) and download the zip file. After you finished downloading the file go to ***bootstrap-x.x.x\\dist*** and you will see the ***js*** and the ***css*** folders. Inside those folders are the files you can simply copy/paste into your project. # # > You can find these files inside the ***static*** folder in lesson 4 # ## template.HTML # In[1]: # # # # # # # It is here in the head tags that we actually make available the css and javascript files. Notice we used the ***static_url*** we defined in ***app.py***. I know you have questions but for now you can simply use these lines of code as your template when adding css and js files into your web app. The code inside the ***body tags*** is just simply a bunch of bootstrap code that we will not be covering in these introductory tutorials. # **Author:** [HEDARO](http://www.hedaro.com)