Your IP : 216.73.216.40


Current Path : /var/www/html/anand/
Upload File :
Current File : /var/www/html/anand/link.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Important Links | Dr. Anand Kumar Tiwari</title>

    <!-- Google Font -->
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">

    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Poppins", sans-serif;
            background-color: #f5f7fa;
            color: #333;
        }

        /* ---- HEADER (same across all pages) ---- */
        .header {
            width: 100%;
            background: linear-gradient(to right, #002b6b, #004caa);
            color: white;
            display: flex;
            align-items: center;
            padding: 15px 30px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo img {
            height: 65px;
        }

        .title {
            margin-left: 18px;
            font-size: 16px;
        }

        .title strong {
            font-size: 18px;
        }

        .nav {
            margin-left: auto;
            display: flex;
            gap: 30px;
        }

        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: 0.3s;
        }

        .nav a:hover {
            color: #ffd86b;
        }

        /* ---- MAIN CONTENT ---- */
        .content {
            width: 90%;
            margin: 40px auto;
        }

        .links-box {
            background: white;
            padding: 30px 40px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .links-box h2 {
            text-align: center;
            color: #002b6b;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .links-box ul {
            list-style: none;
        }

        .links-box li {
            margin: 18px 0;
            font-size: 18px;
        }

        .links-box a {
            text-decoration: none;
            color: #004caa;
            font-weight: 500;
            transition: 0.3s ease;
        }

        .links-box a:hover {
            color: #ffb100;
            padding-left: 6px;
        }

        /* ---- FOOTER ---- */
        .footer {
            margin-top: 50px;
            background: #002b6b;
            color: white;
            padding: 25px;
            text-align: center;
            font-size: 16px;
            box-shadow: 0 -3px 8px rgba(0,0,0,0.15);
        }

        @media(max-width: 900px){
            .nav { display: none; }
        }
    </style>
</head>

<body>

<!-- ===== HEADER ===== -->
<div class="header">

    <div class="logo">
        <img src="logo.jpg" alt="logo">
    </div>

    <div class="title">
        <strong>Anand K. Tiwari (Associate Professor)</strong><br>
        Indian Institute of Information Technology Allahabad <br>
        Prayagraj, Uttar Pradesh
    </div>

    <div class="nav">
        <a href="index.html">Home</a>
        <a href="teaching.html">Teaching</a>
        <a href="research.html">Publications</a>
        <a href="cv.html">CV</a>
        <a href="link.html">Important Links</a>
        <a href="photo.html">Photo Gallery</a>
    </div>

</div>


<!-- ===== MAIN CONTENT ===== -->
<div class="content">
    <div class="links-box">
        <h2>Important Links</h2>

        <ul>
		<li> &#x25CF; <a href="https://scholar.google.co.in/citations?user=loC7N5oAAAAJ" target="_blank">Google Scholar</a></li>
                <li> &#x25CF; <a href="https://orcid.org/signin" target="_blank">Orchid ID</a></li>
                <li> &#x25CF; <a href="https://iiita.irins.org/profile/102931" target="_blank">Vidwan ID</a></li>
		<li> &#x25CF; <a href="https://mjl.clarivate.com/search-results" target="_blank"> List of WoS Journals</a></li>
		<li> &#x25CF; <a href="https://mathscinet.ams.org/mathscinet/journal-search" target="_blank"> 
                         Journal Information and Abbreviations</a></li>
		<li> &#x25CF; <a href="https://profile.iiita.ac.in/seemak/Teaching.php" target="_blank">Linear Algebra Lecture Notes(IIITA)</a></li>
                <li>&#x25CF; <a href="https://home.iitk.ac.in/~psraj/" target="_blank">Linear Algebra & UMC Lecture Notes(IITK)</a></li>
                <li> &#x25CF; <a href="https://pdf.pi7.org/" target="_blank">File Converter</a></li>
                <li> &#x25CF; <a href="https://www.iobnet.co.in/ibanking/login.do" target="_blank">Indian Overseas Bank</a></li>         
            
        </ul>
    </div>
</div>

<br><br><br>

<!-- ===== FOOTER ===== -->
<div class="footer">
    Contact: Office No. 5257 (CC-III), Dept. of Applied Sciences <br>
    Email: anand[AT]iiita.ac.in &nbsp; | &nbsp; Phone: 0532-292-2442 &nbsp; | &nbsp; Mobile: +91-8332095520
</div>

</body>
</html>