32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
|   | --- | ||
|  | title: CSS Framework Semantic UI | ||
|  | --- | ||
|  | # CSS Framework Semantic UI
 | ||
|  | 
 | ||
|  | Semantic UI is one of the most popular CSS framework for developing responsive, mobile first projects for the web. | ||
|  | 
 | ||
|  | ## Getting Started
 | ||
|  | 
 | ||
|  | Here is a simple HTML template which includes the latest compiled and minified CSS and Javascript for the Semantic UI library. We have used a CDN in this example, but you can checkout other ways of installing Semantic UI <a href='https://semantic-ui.com/introduction/getting-started.html' target='_blank' rel='nofollow'>here</a>. | ||
|  | ```html | ||
|  |     <!DOCTYPE html> | ||
|  |     <html lang="en"> | ||
|  |       <head> | ||
|  |         <meta charset="utf-8"> | ||
|  |         <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|  |         <title>Semantic UI Template</title> | ||
|  |         <link rel="stylesheet" href="https://cdn.jsdelivr.net/semantic-ui/2.2.13/semantic.min.css"> | ||
|  |       </head> | ||
|  |       <body> | ||
|  |         <h1>Hello World</h1> | ||
|  |         <!-- Add all HTML Code here --> | ||
|  |         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> | ||
|  |         <script src="https://cdn.jsdelivr.net/semantic-ui/2.2.13/semantic.min.js"></script> | ||
|  |       </body> | ||
|  |     </html> | ||
|  | ``` | ||
|  | ## Learning Resources
 | ||
|  | 
 | ||
|  | *   The official documentation for Semantic UI is available <a href='https://semantic-ui.com/introduction/getting-started.html' target='_blank' rel='nofollow'>here</a>. | ||
|  | *   Checkout Semantic UI's open source GitHub repository <a href='https://github.com/Semantic-Org/Semantic-UI' target='_blank' rel='nofollow'>here</a>. |