Apparently we've reached the limit of GitHub rendering (512K). Time to change the structure accordingly - exercises and questions will move to sub-directories in the exercises directory. This is the first patch in performing this transition.
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | ||
| <html lang="en">
 | ||
| <head>
 | ||
| 
 | ||
|   <!-- Basic Page Needs
 | ||
|   –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 | ||
|   <meta charset="utf-8">
 | ||
|   <title>Hello World :)</title>
 | ||
|   <meta name="description" content="">
 | ||
|   <meta name="author" content="">
 | ||
| 
 | ||
|   <!-- Mobile Specific Metas
 | ||
|   –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 | ||
|   <meta name="viewport" content="width=device-width, initial-scale=1">
 | ||
| 
 | ||
|   <!-- FONT
 | ||
|   –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 | ||
|   <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
 | ||
| 
 | ||
|   <!-- CSS
 | ||
|   –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 | ||
|   <link rel="stylesheet" href="css/normalize.css">
 | ||
|   <link rel="stylesheet" href="css/skeleton.css">
 | ||
| 
 | ||
|   <!-- Favicon
 | ||
|   –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 | ||
|   <link rel="icon" type="image/png" href="images/favicon.png">
 | ||
| 
 | ||
| </head>
 | ||
| <body>
 | ||
| 
 | ||
|   <!-- Primary Page Layout
 | ||
|   –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 | ||
|   <div class="container">
 | ||
|     <div class="row">
 | ||
|       <div class="one-half column" style="margin-top: 25%">
 | ||
|         <h1 style="color:red"><b>Hello World :)</b></h1>
 | ||
|       </div>
 | ||
|     </div>
 | ||
|   </div>
 | ||
| 
 | ||
| <!-- End Document
 | ||
|   –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 | ||
| </body>
 | ||
| </html>
 |