32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
|   | --- | ||
|  | title: CSS Framework Bulma | ||
|  | --- | ||
|  | # CSS Framework Bulma
 | ||
|  | 
 | ||
|  | Bulma is a modern CSS framework based on <a href='http://forum.freecodecamp.com/t/css-flexbox-tips-and-tricks' target='_blank' rel='nofollow'>Flexbox</a> and highly customizable using <a href='http://sass-lang.com/' target='_blank' rel='nofollow'>Sass</a> (SCSS). | ||
|  | 
 | ||
|  | ## Getting Started
 | ||
|  | 
 | ||
|  | Here is a simple HTML template which includes the latest compiled and minified CSS for the Bulma library. | ||
|  | ```html | ||
|  |     <!DOCTYPE html> | ||
|  |     <html lang="en"> | ||
|  |       <head> | ||
|  |         <meta charset="utf-8"> | ||
|  |         <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|  |         <title>Bulma Template</title> | ||
|  |         <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | ||
|  |         <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.0.23/css/bulma.min.css"> | ||
|  |       </head> | ||
|  |       <body> | ||
|  |         <h1>Hello World</h1> | ||
|  |         <!-- Add all HTML Code here --> | ||
|  |       </body> | ||
|  |     </html> | ||
|  | ``` | ||
|  | We have used a CDN in this example, but you can checkout other ways of installing Bulma <a href='http://bulma.io/documentation/overview/start/' target='_blank' rel='nofollow'>here</a>. | ||
|  | 
 | ||
|  | ## Learning Resources
 | ||
|  | 
 | ||
|  | *   The official documentation for Bulma is available <a href='http://bulma.io/documentation/overview/start/' target='_blank' rel='nofollow'>here</a>. | ||
|  | *   Checkout Bulma's open source GitHub repository <a href='https://github.com/jgthms/bulma' target='_blank' rel='nofollow'>here</a>. |