mirror of
				https://github.com/osmarks/random-stuff
				synced 2025-10-31 13:53:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			761 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			761 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <style>
 | |
|     .outer {
 | |
|         display: flex;
 | |
|     }
 | |
|     .inner {
 | |
|         width: 50%;
 | |
|     }
 | |
|     img {
 | |
|         width: 30em;
 | |
|     }
 | |
|     h1 {
 | |
|         font-style: italic;
 | |
|         font-size: 4em;
 | |
|         font-weight: 400;
 | |
|         margin-top: 0;
 | |
|     }
 | |
|     h2 {
 | |
|         font-style: italic;
 | |
|         margin-top: 0;
 | |
|         font-size: 3em;
 | |
|         font-weight: 400;
 | |
|     }
 | |
| </style>
 | |
| <div class="outer">
 | |
|     <div class="inner">
 | |
|         <h1>if I am elected</h1>
 | |
|         <h2>good things</h2>
 | |
|         <img src="g1.png">
 | |
|         <h2>bad things</h2>
 | |
|         <img src="g2.png">
 | |
|     </div>
 | |
|     <div class="inner">
 | |
|         <h1>otherwise</h1>
 | |
|         <h2>good things</h2>
 | |
|         <img src="g4.png">
 | |
|         <h2>bad things</h2>
 | |
|         <img src="g3.png">
 | |
|     </div>
 | |
| </div> |