35 lines
		
	
	
		
			979 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			979 B
		
	
	
	
		
			HTML
		
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="fr">
 | |
| 	<head>
 | |
| 		<meta charset="utf-8">
 | |
| 		<title>Chaos game</title>
 | |
| 
 | |
|         <link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic|Playfair+Display:400,400italic,700" rel="stylesheet">
 | |
|         <link href="styles/common.css" rel="stylesheet">
 | |
|         <link href="styles/subsite.css" rel="stylesheet">
 | |
| 		<link href="styles/index.css" rel="stylesheet">
 | |
| 	</head>
 | |
| 	<body class="split">
 | |
|         <aside>
 | |
|             <header>
 | |
|                 <a href="/">
 | |
|                     <img src="images/avatar.jpg" alt="Photo de Mattéo" />
 | |
|                     <span>Mattéo Delabre ✏️</span><br />
 | |
|                     Back to home
 | |
|                 </a>
 | |
|             </header>
 | |
| 
 | |
|             <h1>The Chaos Game</h1>
 | |
|             <h3>Creating fractals with the chaos game</h3>
 | |
| 
 | |
| 
 | |
|         </aside>
 | |
| 
 | |
|         <div id="content">
 | |
|             <canvas id="plotting"></canvas>
 | |
|         </div>
 | |
| 
 | |
|         <script src="bundle.js"></script>
 | |
| 	</body>
 | |
| </html>
 |