|
4 | 4 | <head> |
5 | 5 | <meta charset="UTF-8"> |
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
7 | | - <title>CaesarCipher.extended | Next-Gen Encryption</title> |
| 7 | + <title>CaesarCipher.extended</title> |
| 8 | + |
| 9 | +<!-- Primary SEO Meta Tags --> |
| 10 | +<meta name="title" content="CaesarCipher.extended – Modern Caesar Cipher Python Library"> |
| 11 | +<meta name="description" content="CaesarCipher.extended is a next-gen Python encryption library extending the classic Caesar Cipher with support for numbers, symbols, emojis, and file encryption. Lightweight, type-safe, and open source."> |
| 12 | +<meta name="keywords" content="Caesar Cipher Python, Python encryption library, CaesarCipher.extended, cryptography python, text encryption, file encryption python, emoji encryption, Virati Akiranandhan Reddy, VIRATI AKIRANANDHAN REDDY, viratiakiranandhanreddy, ViratiAkiraNandhanReddy"> |
| 13 | +<meta name="author" content="Virati Akiranandhan Reddy"> |
| 14 | +<meta name="robots" content="index, follow"> |
| 15 | + |
| 16 | +<!-- Canonical URL --> |
| 17 | +<link rel="canonical" href="https://viratiakiranandhanreddy.github.io/CaesarCipher.extended/"> |
| 18 | + |
| 19 | +<!-- Open Graph / Facebook --> |
| 20 | +<meta property="og:type" content="website"> |
| 21 | +<meta property="og:url" content="https://viratiakiranandhanreddy.github.io/CaesarCipher.extended/"> |
| 22 | +<meta property="og:title" content="CaesarCipher.extended – Next-Gen Caesar Cipher for Python"> |
| 23 | +<meta property="og:description" content="Encrypt text, numbers, symbols, emojis, and files using an extended Caesar Cipher algorithm in Python."> |
| 24 | +<meta property="og:image" content="https://raw.githubusercontent.com/ViratiAkiraNandhanReddy/CaesarCipher.extended/main/assets/og-image.png"> |
| 25 | + |
| 26 | +<!-- Twitter Card --> |
| 27 | +<meta name="twitter:card" content="summary_large_image"> |
| 28 | +<meta name="twitter:title" content="CaesarCipher.extended – Python Encryption Library"> |
| 29 | +<meta name="twitter:description" content="A modern take on Caesar Cipher with emoji, symbol & number encryption for Python developers."> |
| 30 | + |
| 31 | +<!-- Schema.org Structured Data --> |
| 32 | +<script type="application/ld+json"> |
| 33 | +{ |
| 34 | + "@context": "https://schema.org", |
| 35 | + "@type": "SoftwareApplication", |
| 36 | + "name": "CaesarCipher.extended", |
| 37 | + "applicationCategory": "DeveloperTool", |
| 38 | + "operatingSystem": "Cross-platform", |
| 39 | + "programmingLanguage": "Python", |
| 40 | + "license": "https://www.gnu.org/licenses/gpl-3.0.en.html", |
| 41 | + "author": { |
| 42 | + "@type": "Person", |
| 43 | + "name": "Virati Akiranandhan Reddy" |
| 44 | + }, |
| 45 | + "url": "https://viratiakiranandhanreddy.github.io/CaesarCipher.extended/", |
| 46 | + "downloadUrl": "https://pypi.org/project/CaesarCipher.extended/", |
| 47 | + "description": "An extended Caesar Cipher Python library supporting digits, symbols, emojis, and file encryption with zero dependencies." |
| 48 | +} |
| 49 | +</script> |
| 50 | + |
8 | 51 | <script src="https://cdn.tailwindcss.com"></script> |
9 | 52 | <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> |
10 | 53 | <link |
|
0 commit comments