63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| 
 | |
| <head>
 | |
|   <title>walias</title>
 | |
|   <script src="index.js" async></script>
 | |
|   <meta name="description" content="Aliases for Wild Duck">
 | |
|   <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|   <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
 | |
|     integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
 | |
|   <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
 | |
|     integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
 | |
|     crossorigin="anonymous"></script>
 | |
|   <style>
 | |
|     * {
 | |
|       margin: 0;
 | |
|       padding: 0;
 | |
|       box-sizing: border-box;
 | |
|     }
 | |
| 
 | |
|     html {
 | |
|       height: 100%;
 | |
|     }
 | |
| 
 | |
|     body {
 | |
|       min-height: 100%;
 | |
|       display: flex;
 | |
|       justify-content: center;
 | |
|     }
 | |
| 
 | |
|     img.logo {
 | |
|       display: block;
 | |
|       margin: auto auto;
 | |
|       width: 30%;
 | |
|       max-width: 100%;
 | |
|       max-height: 100%;
 | |
|     }
 | |
| 
 | |
|     .wrapper {
 | |
|       text-align: center;
 | |
|     }
 | |
| 
 | |
|     #container {
 | |
|       padding-top: 50px;
 | |
|     }
 | |
| 
 | |
|     .table {
 | |
|       text-align: left;
 | |
|     }
 | |
|   </style>
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|   <div class="wrapper">
 | |
|     <div class="header">
 | |
|       <img class="logo" src="logo.jpg">
 | |
|       <h1>Wildduck aliases</h1>
 | |
|     </div>
 | |
|     <div id="container"></div>
 | |
|   </div>
 | |
| </body>
 | |
| 
 | |
| </html> |