File size: 2,899 Bytes
1f7bd86 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | <!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>مبدل فایل آلفا</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Vazirmatn', sans-serif;
padding: 2rem;
max-width: 800px;
margin: auto;
}
textarea {
min-height: 200px;
resize: vertical;
}
.grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
}
button[type="submit"] {
background-color: #1095c1;
border-color: #1095c1;
}
button[type="submit"]:hover {
background-color: #0d7b9e;
border-color: #0d7b9e;
}
</style>
</head>
<body>
<main class="container">
<header>
<h1 style="text-align: center;">مبدل فایل آلفا 📝</h1>
<p style="text-align: center;">متن ساده خود را وارد کرده و فرمت خروجی مورد نظر را انتخاب کنید.</p>
</header>
<form action="/" method="post">
<label for="content">متن شما:</label>
<textarea id="content" name="content" placeholder="متن خود را اینجا وارد کنید..." required></textarea>
<label>انتخاب فرمت خروجی:</label>
<div class="grid">
<label>
<input type="radio" name="format" value="txt" checked>
متن ساده (TXT)
</label>
<label>
<input type="radio" name="format" value="pdf">
پیدیاف (PDF)
</label>
<label>
<input type="radio" name="format" value="docx">
ورد (DOCX)
</label>
<!-- ***** تغییر در اینجا اعمال شده است ***** -->
<label>
<input type="radio" name="format" value="html">
اچتیامال (HTML)
</label>
</div>
<button type="submit">ایجاد و دانلود فایل</button>
</form>
<footer>
<small>سرویس ارائه شده توسط <a href="https://www.alpha-ai.ir" target="_blank">هوش مصنوعی آلفا</a></small>
</footer>
</main>
</body>
</html>
|