HTMLify

Note
Views: 53 | Author: himanshu
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Programming Notes Hub</title>
    <style>
        body {
            background-color: #1e1e1e;
            color: #ffffff;
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 0;
        }
        header {
            text-align: center;
            padding: 20px;
        }
        h1 {
            font-size: 32px;
        }
        .bracket {
            color: #f92672;
        }
        section {
            background-color: #2d2d2d;
            margin: 20px auto;
            padding: 20px;
            max-width: 800px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 24px;
            color: #66d9ef;
        }
        .join-button {
            display: inline-block;
            background-color: #0088cc;
            color: #ffffff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
            margin-top: 10px;
        }
        .join-button:hover {
            background-color: #006699;
        }
        .resource-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #444;
        }
        .resource-item:last-child {
            border-bottom: none;
        }
        .resource-title {
            color: #66d9ef;
            font-size: 20px;
            margin-bottom: 10px;
        }
        .resource-description {
            margin-bottom: 10px;
            line-height: 1.5;
        }
        .resource-link {
            display: inline-block;
            background-color: #0088cc;
            color: #ffffff;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 16px;
        }
        .resource-link:hover {
            background-color: #006699;
        }
        footer {
            text-align: center;
            padding: 10px;
            font-size: 14px;
        }
    </style>
</head>
<body>
    <header>
        <h1>
            <span class="bracket">{</span>
            Programming Notes Hub
            <span class="bracket">}</span>
        </h1>
    </header>
    <main>
        <section id="intro">
            <h2>Welcome to Programming Notes Hub</h2>
            <p>
                This website provides a collection of free, high-quality programming notes and resources for developers and learners.
            </p>
        </section>
        
        <section id="resources">
            <h2>📚 Free Programming Resources 📚</h2>
            
            <div class="resource-item">
                <h3 class="resource-title">1. GoalKicker Notes</h3>
                <p class="resource-description">Comprehensive programming notes covering various languages and technologies.</p>
                <a href="https://books.goalkicker.com/" class="resource-link" target="_blank">Visit Website</a>
            </div>
            
            <div class="resource-item">
                <h3 class="resource-title">2. FreeCodeCamp</h3>
                <p class="resource-description">Full curriculum with notes, projects, and certificates. Covers web development, data science, Python, JavaScript, and more.</p>
                <a href="https://www.freecodecamp.org/" class="resource-link" target="_blank">Visit Website</a>
            </div>
            
            <div class="resource-item">
                <h3 class="resource-title">3. DevDocs.io</h3>
                <p class="resource-description">API documentation and reference for almost every developer language or tool. Super fast and works offline.</p>
                <a href="https://devdocs.io/" class="resource-link" target="_blank">Visit Website</a>
            </div>
            
            <div class="resource-item">
                <h3 class="resource-title">4. TutorialsPoint</h3>
                <p class="resource-description">Text-based tutorials and notes for almost every programming language and technology. Simple layout for quick skimming and revision.</p>
                <a href="https://www.tutorialspoint.com/" class="resource-link" target="_blank">Visit Website</a>
            </div>
            
            <div class="resource-item">
                <h3 class="resource-title">5. GitHub - Ebook Foundations</h3>
                <p class="resource-description">Huge curated list of free programming books and notes in many languages. Covers everything from CS theory to niche frameworks.</p>
                <a href="https://github.com/EbookFoundation/free-programming-books" class="resource-link" target="_blank">Visit Website</a>
            </div>
            
            <div class="resource-item">
                <h3 class="resource-title">6. Project Gutenberg for Programming</h3>
                <p class="resource-description">Free public domain programming and classic computer science books.</p>
                <a href="https://www.gutenberg.org/" class="resource-link" target="_blank">Visit Website</a>
            </div>
            
            <div class="resource-item">
                <h3 class="resource-title">7. LearnXinYMinutes</h3>
                <p class="resource-description">Quick syntax and concept reference guides in code form. Great for jumpstarting with new languages fast.</p>
                <a href="https://learnxinyminutes.com/" class="resource-link" target="_blank">Visit Website</a>
            </div>
            
            <div class="resource-item">
                <h3 class="resource-title">8. Lenotes.artizote.com</h3>
                <p class="resource-description">A collection of programming notes and resources for various languages and technologies.</p>
                <a href="https://lenotes.artizote.com" class="resource-link" target="_blank">Visit Website</a>
            </div>
        </section>
    </main>
    <footer>
        <p>© 2025 Programming Notes Hub. All rights reserved.</p>
    </footer>
</body>
</html>

Comments