<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
    <channel>
        
        <title>
            <![CDATA[ español - freeCodeCamp.org ]]>
        </title>
        <description>
            <![CDATA[ Browse thousands of programming tutorials written by experts. Learn Web Development, Data Science, DevOps, Security, and get developer career advice. ]]>
        </description>
        <link>https://www.freecodecamp.org/news/</link>
        <image>
            <url>https://cdn.freecodecamp.org/universal/favicons/favicon.png</url>
            <title>
                <![CDATA[ español - freeCodeCamp.org ]]>
            </title>
            <link>https://www.freecodecamp.org/news/</link>
        </image>
        <generator>Eleventy</generator>
        <lastBuildDate>Sun, 26 Jul 2026 16:38:26 +0000</lastBuildDate>
        <atom:link href="https://www.freecodecamp.org/news/tag/espanol/rss.xml" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        
            <item>
                <title>
                    <![CDATA[ Learn React in Spanish - Course for Beginners ]]>
                </title>
                <description>
                    <![CDATA[ React is one of the most popular front-end web development libraries for building web applications with reusable components. If you're a web developer, React can be super helpful for you. We just published a 5-hour course on the freeCodeCamp.org Span... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/learn-react-in-spanish-beginners-course/</link>
                <guid isPermaLink="false">667c1452ad32b772504628e0</guid>
                
                    <category>
                        <![CDATA[ React ]]>
                    </category>
                
                    <category>
                        <![CDATA[ español ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Estefania Cassingena Navone ]]>
                </dc:creator>
                <pubDate>Wed, 26 Jun 2024 13:14:58 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1718999350130/3e442fe6-4f06-4b48-8102-c8bc4def3946.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>React is one of the most popular front-end web development libraries for building web applications with reusable components. If you're a web developer, React can be super helpful for you.</p>
<p>We just published a 5-hour course on the <a target="_blank" href="https://www.youtube.com/freecodecampespanol">freeCodeCamp.org Spanish YouTube channel</a> that will teach you React step by step. You will start by installing and configuring React with <code>create-react-app</code> and Vite and gradually dive into more advanced topics, including components, JSX, hooks, events, forms, and more.</p>
<p>If you have Spanish-speaking friends, you are welcome to share the <a target="_blank" href="https://www.freecodecamp.org/espanol/news/aprende-react-con-apis-y-firebase-curso-desde-cero"><strong>Spanish version of this article</strong></a> with them.</p>
<p>Carpi Coder teaches this course. He is a web developer who has learned from many communities, including freeCodeCamp. In 2020, he created his YouTube channel to share his knowledge and now he is sharing his in-depth course with the freeCodeCamp community.</p>
<p>Before we dive into the course content, let's see what React is and why you should learn it...</p>
<h1 id="heading-react-for-beginners">React for Beginners</h1>
<p>React is one of the most popular front-end web development libraries. The results of the <a target="_blank" href="https://survey.stackoverflow.co/2023/#web-frameworks-and-technologies">Stack Overflow Developer Survey 2023</a> confirm this.</p>
<p>When developers were asked this question:</p>
<blockquote>
<p>Which <strong>web frameworks and web technologies</strong> have you done extensive development work in over the past year, and which do you want to work in over the next year?</p>
</blockquote>
<p><strong>40.58%</strong> of them chose React.</p>
<p>React and Node.js were the most common web technologies used by all respondents.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1719000934631/fb271486-f229-42a5-8629-746bb6310f0a.png" alt="fb271486-f229-42a5-8629-746bb6310f0a" class="image--center mx-auto" width="2940" height="1644" loading="lazy"></p>
<p>The popularity and worldwide use of React shows how relevant it is and will continue to be in the web development industry.</p>
<p>Key advantages of React include:</p>
<ul>
<li><p><strong>Component-Based Architecture</strong>. React applications are built by breaking down complex user interfaces (UIs) into smaller, simpler, and independent components.</p>
</li>
<li><p><strong>Virtual DOM</strong>. React uses a virtual representation of the real DOM of the web application for making updates. With this virtual DOM, it can efficiently update only the parts of the user interface that need to be updated.</p>
</li>
<li><p><strong>Support for JSX syntax</strong>. With JSX, you can define the structure of React components with a syntax that is very similar to HTML combined with JavaScript.</p>
</li>
</ul>
<p>React also has a very large and active community of developers and libraries for many different purposes. It's super helpful for building maintainable and user-friendly web applications.</p>
<p><strong>💡 Tip:</strong> The official React logo is an atom. 👇</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1719002500087/60ae6dda-564c-4199-bd01-0f6560b4abd6.png" alt="60ae6dda-564c-4199-bd01-0f6560b4abd6" class="image--center mx-auto" width="2604" height="1498" loading="lazy"></p>
<h1 id="heading-react-course-in-spanish">React Course in Spanish</h1>
<p>Awesome. Now that you know more about React, let's see what you will learn during the course:</p>
<ul>
<li><p>How to install React with <code>create-react-app</code> and with Vite.</p>
</li>
<li><p>JSX</p>
</li>
<li><p>Components</p>
</li>
<li><p>Props</p>
</li>
<li><p>Hooks</p>
</li>
<li><p>Components lifecycle</p>
</li>
<li><p>Promises</p>
</li>
<li><p>Events</p>
</li>
<li><p>Forms</p>
</li>
<li><p>And more...</p>
</li>
</ul>
<p>💡 <strong>Tip:</strong> This course is great for beginners. If you are taking your first steps in React, Carpi Coder will guide you step by step.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1719003104391/eab7016c-a491-4ba9-9020-23abe7e69d9a.png" alt="eab7016c-a491-4ba9-9020-23abe7e69d9a" class="image--center mx-auto" width="1920" height="1080" loading="lazy"></p>
<p>You will also learn more advanced techniques, like how to:</p>
<ul>
<li><p>Fetch and display data from an API.</p>
</li>
<li><p>Integrate your React application with a Firebase database.</p>
</li>
<li><p>Deploy your React application on Netlify, a cloud platform for deploying and managing web applications and websites.</p>
</li>
</ul>
<p>💡 <strong>Tip:</strong> During the course, you will create the Firebase database step by step, so you can take the course even if you don't have previous knowledge of Firebase.</p>
<p>If you are ready to start learning React, check out the course in Spanish on the <a target="_blank" href="https://www.youtube.com/freecodecampespanol">freeCodeCamp.org Spanish YouTube channel</a>:</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/oumXEuPM8RQ" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" loading="lazy"></iframe></div>
<p> </p>
<p>✍️ Course created by Carpi Coder.</p>
<ul>
<li><p>YouTube: <a target="_blank" href="https://www.youtube.com/c/CarpiCoder">@carpicoder</a></p>
</li>
<li><p>Instagram: <a target="_blank" href="http://instagram.com/carpicoder">instagram.com/carpicoder</a></p>
</li>
<li><p>TikTok: <a target="_blank" href="http://tiktok.com/@carpicoder">tiktok.com/@carpicoder</a></p>
</li>
<li><p>Sitio Web: <a target="_blank" href="https://carpicoder.com/">https://carpicoder.com/</a></p>
</li>
<li><p>X: <a target="_blank" href="https://x.com/carpicoder">https://x.com/carpicoder</a></p>
</li>
<li><p>GitHub: <a target="_blank" href="https://github.com/carpicoder">https://github.com/carpicoder</a></p>
</li>
<li><p>LinkedIn: <a target="_blank" href="http://linkedin.com/in/matiascoletta">linkedin.com/in/matiascoletta</a></p>
</li>
</ul>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Learn Go in Spanish – Golang Course for Beginners ]]>
                </title>
                <description>
                    <![CDATA[ Go is a powerful programming language that is quickly growing in popularity. It's easy to learn and works great for building powerful applications. Whether you're new to coding or already know other programming languages, Go is a great choice for exp... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/learn-go-in-spanish-golang-course-for-beginners/</link>
                <guid isPermaLink="false">66605cc8895b4ab5807aaa96</guid>
                
                    <category>
                        <![CDATA[ golang ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Go Language ]]>
                    </category>
                
                    <category>
                        <![CDATA[ español ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Estefania Cassingena Navone ]]>
                </dc:creator>
                <pubDate>Wed, 05 Jun 2024 12:40:40 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1717372640700/462d0b00-d37e-4281-9b7a-7476b1c8f73f.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Go is a powerful programming language that is quickly growing in popularity. It's easy to learn and works great for building powerful applications. Whether you're new to coding or already know other programming languages, Go is a great choice for expanding your skills.</p>
<p>We just published a course on the <a target="_blank" href="https://www.youtube.com/freecodecampespanol">freeCodeCamp.org Spanish YouTube channel</a> that will teach you the basics of Go step by step. You will start by installing and configuring Go and gradually dive into more advanced topics, including data types, variables, conditionals, loops, functions, the Go standard library, and much more.</p>
<p>If you have Spanish-speaking friends, you are welcome to share the <a target="_blank" href="https://www.freecodecamp.org/news/aprende-go-curso-de-golang-desde-cero"><strong>Spanish version of this article</strong></a> with them.</p>
<p>The course was created by Leonardo José Castillo Lacruz. Leonardo is a software developer and content creator who loves teaching programming and sharing his knowledge.</p>
<p>Are you ready? Let's see a quick overview of Go and what you will learn in the course.</p>
<h1 id="heading-golang-for-beginners">Golang for Beginners</h1>
<p>In the constantly-evolving world of software development, choosing and learning the right programming language is essential. Go (also known as Golang) has become a powerful and versatile option, rapidly gaining popularity for its combination of simplicity, efficiency, and scalability.</p>
<p>Key advantages of Go include:</p>
<ul>
<li><p>It's easy to learn and understand because of its simple syntax.</p>
</li>
<li><p>It's very fast because it is <a target="_blank" href="https://go.dev/doc/faq">compiled ahead of time into native machine code</a>.</p>
</li>
<li><p>It has powerful tools to handle concurrent tasks.</p>
</li>
<li><p>It's an open source programming language supported by Google.</p>
</li>
<li><p>It has <a target="_blank" href="https://go.dev/solutions/use-cases">use cases</a> in various industries, including cloud and network services, command-line interfaces, web development, and development operations and site reliability engineering.</p>
</li>
</ul>
<p>And more!</p>
<p>Go is a beginner-friendly programming language, so both new and experienced developers can start building amazing applications with its capabilities.</p>
<p>💡 <strong>Tip:</strong> If you are curious, Go's mascot is this beautiful <a target="_blank" href="https://go.dev/blog/gopher">Gopher</a> that we have below. (Another reason to learn and love Go, right? 😁).</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1717376548147/76aa248f-d783-4850-9ada-faab2ae3d5de.png" alt="76aa248f-d783-4850-9ada-faab2ae3d5de" class="image--center mx-auto" width="500" height="500" loading="lazy"></p>
<h1 id="heading-golang-course-in-spanish">Golang Course in Spanish</h1>
<p>Great. Now that you know more about Go, let's see what you will learn during the course:</p>
<ul>
<li><p>Installing and configuring Go</p>
</li>
<li><p>Data Types</p>
</li>
<li><p>Variables</p>
</li>
<li><p>Arrays</p>
</li>
<li><p>Maps</p>
</li>
<li><p>Conditionals</p>
</li>
<li><p>Loops</p>
</li>
<li><p>Functions</p>
</li>
<li><p>The Go standard library</p>
</li>
<li><p>And more...</p>
</li>
</ul>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1717377370865/9778f9f5-6fa2-43f3-94dd-22b8e51504e3.png" alt="9778f9f5-6fa2-43f3-94dd-22b8e51504e3" class="image--center mx-auto" width="1920" height="1080" loading="lazy"></p>
<p><strong>💡 Tip:</strong> The course is great for beginners. If you are taking your first steps with Go, this course is for you.</p>
<p>If you are ready to start learning Go, check out the course in Spanish on the <a target="_blank" href="https://www.youtube.com/freecodecampespanol">freeCodeCamp.org Spanish YouTube channel</a>:</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/L_yYVEC8GZo" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" loading="lazy"></iframe></div>
<p> </p>
<p>✍️ Course created by Leonardo José Castillo Lacruz.</p>
<ul>
<li><p>YouTube: <a target="_blank" href="https://www.youtube.com/leonardocastillo79">@LeonardoCastillo79</a></p>
</li>
<li><p>LinkedIn: <a target="_blank" href="https://www.linkedin.com/in/leonardo-castillo-4911571a/">Leonardo José Castillo Lacruz</a></p>
</li>
<li><p>Twitter: <a target="_blank" href="https://twitter.com/ljcl79">@ljcl79</a></p>
</li>
<li><p>GitHub: <a target="_blank" href="https://github.com/ljcl79">@ljcl79</a></p>
</li>
</ul>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Build a Responsive Website with HTML and CSS - Course in Spanish ]]>
                </title>
                <description>
                    <![CDATA[ Building websites that look great on any device – like a phone, tablet, or computer screen – is what responsive web development is all about. In this course, you will learn how to build a responsive website step by step in Spanish using HTML and CSS.... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/build-a-responsive-website-with-html-and-css-full-course-in-spanish/</link>
                <guid isPermaLink="false">662926efccfe31d419712ddf</guid>
                
                    <category>
                        <![CDATA[ Responsive Web Design ]]>
                    </category>
                
                    <category>
                        <![CDATA[ español ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Estefania Cassingena Navone ]]>
                </dc:creator>
                <pubDate>Wed, 24 Apr 2024 15:36:15 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/res/hashnode/image/upload/v1713808669840/d79f8ee5-b159-4a71-a0be-4ff3b52b3f5d.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Building websites that look great on any device – like a phone, tablet, or computer screen – is what responsive web development is all about. In this course, you will learn how to build a responsive website step by step in Spanish using HTML and CSS.</p>
<p>We just published a course on the <a target="_blank" href="https://www.youtube.com/freecodecampespanol">freeCodeCamp.org Spanish YouTube channel</a> that will teach you Responsive Web Development by building a website step by step. You will use the core concepts that you need to understand in order to master responsive web development. By the end of the course, you will be able to design and implement responsive websites using HTML and CSS.</p>
<p>If you have Spanish-speaking friends, you are welcome to share the <a target="_blank" href="https://www.freecodecamp.org/espanol/news/crea-una-pagina-web-responsive-con-html-y-css"><strong>Spanish version of this article</strong></a> with them.</p>
<p>This course was created by David Choi. David is a Software Developer who loves coding and sharing his knowledge with everyone who wants to dive into the world of programming and computer science.</p>
<p>David will teach you how to create and implement modern and responsive web designs step by step with HTML and CSS (without frameworks or libraries).</p>
<p>If your goal is to design and create modern websites, you definitely need to learn how to make them responsive. Before you start learning responsive web development with David's course, let's have a quick introduction.</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2024/04/frame-4.png" alt="The first sections of the responsive website that you will be building step by step." width="600" height="400" loading="lazy"></p>
<h2 id="heading-what-is-responsive-web-development">What is Responsive Web Development?</h2>
<p>A responsive website is a website that adapts its layout and content to fit the size of the screen. It should look and work correctly on desktops, laptops, tablets, smartphones, and other devices.</p>
<p>Responsive web development is the approach used by developers to create these websites that adapt to devices of different sizes. This results in a much better user experience because the user will have access to the content in a layout that has been specifically adapted to their device. Search engines also reward sites that offer a good user experience for all devices.</p>
<p>You can develop responsive websites with HTML and CSS. This is where CSS Flexbox comes to the rescue. You will practice your CSS Flexbox skills during the course. Let's see what it is all about.</p>
<h3 id="heading-what-is-flexbox">What is Flexbox?</h3>
<p>Flexbox is a CSS layout model for arranging elements in a single dimension. With Flexbox, you can place elements horizontally or vertically, distribute space evenly to resize the layout based on screen size, and even control the order of the elements.</p>
<p>💡 <strong>Tip:</strong> If you need to refresh your HTML, CSS, and Flexbox skills, you can take courses on these topics on our Spanish YouTube channel before diving into the project.</p>
<ul>
<li><p><a target="_blank" href="https://www.youtube.com/watch?v=XqFR2lqBYPs">Aprende HTML y CSS - Curso Desde Cero</a></p>
</li>
<li><p><a target="_blank" href="https://www.youtube.com/watch?v=iwFEc6I8wSA">Aprende CSS Flexbox - Curso desde Cero</a></p>
</li>
</ul>
<h2 id="heading-responsive-website-project-in-spanish"><strong>Responsive Website Project in Spanish</strong></h2>
<p>During the course, you will:</p>
<ul>
<li><p>Analyze the website design and translate it into HTML.</p>
</li>
<li><p>Prepare your development environment.</p>
</li>
<li><p>Install Visual Studio Code.</p>
</li>
<li><p>Create the structure of the website in HTML.</p>
</li>
<li><p>Define and assign CSS styles for the mobile version.</p>
</li>
<li><p>Define and assign CSS styles for the desktop version.</p>
</li>
</ul>
<p>You will combine basic CSS with Flexbox to assign styles that adapt to the current size of the screen.</p>
<p>Here we have some course screenshots to give you an idea of the awesome project that you will be building with David:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2024/04/frame-2.png" alt="The desktop version of the responsive website." width="600" height="400" loading="lazy"></p>
<p><img src="https://www.freecodecamp.org/news/content/images/2024/04/frame-3.png" alt="The mobile version of the responsive website." width="600" height="400" loading="lazy"></p>
<p>If you are ready to start building this project, check out the course in Spanish on the <a target="_blank" href="https://www.youtube.com/freecodecampespanol">freeCodeCamp.org Spanish YouTube channel</a>:</p>
<div class="embed-wrapper">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/VgHproadDD8" style="aspect-ratio: 16 / 9; width: 100%; height: auto;" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" loading="lazy"></iframe></div>
<p> </p>
<p>✍️ Course created by David Choi.</p>
<ul>
<li><p>YouTube: <a target="_blank" href="https://www.youtube.com/@deivchoi">@deivchoi</a></p>
</li>
<li><p>GitHub: <a target="_blank" href="https://github.com/choidavid4">@choidavid4</a></p>
</li>
</ul>
 ]]>
                </content:encoded>
            </item>
        
    </channel>
</rss>
