File size: 1,927 Bytes
7476d14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ChemConverters App Description</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 30px;
            line-height: 4;
        }
        .link-button {
            display: inline-block;
            margin: 50px 50px;
            padding: 50px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
        }
        .link-button:hover {
            background-color: #0056b3;
        }
    </style>
</head>
<body>
    <p>With ChemConverters, you can effortlessly:</p>
    <ul>
        <li>Convert SMILES strings to IUPAC names and vice versa 🔄</li>
        <li>Choose your preferred IUPAC naming style: BASE, SYSTEMATIC, or TRADITIONAL 📚</li>
        <li>Validate chemical naming with molecules fingerprints similarity for accuracy checks ✔️</li>
    </ul>
    <p>Developed by the brilliant minds at Knowladgator, this app showcases the abilities of our chemical transformer models. Whether you're working on a research project, studying for an exam, or just exploring the chemical universe, ChemConverters is your go-to tool. 🛠️</p>
    <p>Remember, chemistry is not just about reactions; it's about connections. Let's build those connections together! 💫</p>
    <!-- Links Section -->
    <div>
        <a href="https://www.knowledgator.com/" class="link-button" target="_blank">🔗Visit our Website 🔗  </a>
        <a href="https://www.linkedin.com/company/knowledgator/" class="link-button" target="_blank">💼Follow on LinkedIn 💼  </a>
        <a href="https://huggingface.co/knowledgator/" class="link-button" target="_blank">🤗Hugging Face Profile🤗</a>
    </div>
</body>
</html>