22 lines
633 B
HTML
22 lines
633 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Instagram Formatter</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Instagram Formatter</h1>
|
|
<form id="uploadForm">
|
|
<input type="file" id="imageInput" name="image" accept="image/*" required>
|
|
<button type="submit">Upload and Format</button>
|
|
</form>
|
|
<a id="card" style="display: none;">Download Formatted Image</a>
|
|
<div id="preview"></div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|