30 lines
		
	
	
		
			889 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			889 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <title>Agatsu Intro to Programming</title>
 | |
|     <meta charset="utf-8">
 | |
|     <style>
 | |
|       @import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
 | |
|       @import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
 | |
|       @import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
 | |
| 
 | |
|       body { font-family: 'Droid Serif'; }
 | |
|       h1, h2, h3 {
 | |
|         font-family: 'Yanone Kaffeesatz';
 | |
|         font-weight: normal;
 | |
|       }
 | |
|       .remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
 | |
|     </style>
 | |
| 	<link rel="stylesheet" href="index.css" type="text/css">
 | |
|   </head>
 | |
|   <body>
 | |
|     <script src="https://remarkjs.com/downloads/remark-latest.min.js"></script>
 | |
|     <script>
 | |
| var slideshow = remark.create({
 | |
| 	sourceUrl: 'slides.md',
 | |
| 	highlightLines: true,
 | |
| });
 | |
|     </script>
 | |
|   </body>
 | |
| </html>
 |