38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <link rel="stylesheet" href="style.css" />
 | |
|     <title>Image Carousel</title>
 | |
|   </head>
 | |
|   <body>
 | |
|     <div class="carousel">
 | |
|       <div class="image-container" id="imgs">
 | |
|         <img src="https://images.unsplash.com/photo-1599394022918-6c2776530abb?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1458&q=80"
 | |
|        alt="first-image"
 | |
|        />
 | |
|     <img
 | |
|        src="https://images.unsplash.com/photo-1593642632559-0c6d3fc62b89?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80"
 | |
|        alt="second-image"
 | |
|        />
 | |
|     <img
 | |
|        src="https://images.unsplash.com/photo-1599423300746-b62533397364?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80"
 | |
|        alt="third-image"
 | |
|        />
 | |
|     <img
 | |
|        src="https://images.unsplash.com/photo-1599561046251-bfb9465b4c44?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1492&q=80"
 | |
|        alt="fourth-image"
 | |
|        />
 | |
|       </div>
 | |
| 
 | |
|       <div class="buttons-container">
 | |
|         <button id="left" class="btn">Prev</button>
 | |
|         <button id="right" class="btn">Next</button>
 | |
|       </div>
 | |
|     </div>
 | |
| 
 | |
|     <script src="script.js"></script>
 | |
|   </body>
 | |
| </html>
 | 
