<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Anu Charley K</title>
    <description>The latest articles on DEV Community by Anu Charley K (@ack).</description>
    <link>https://dev.to/ack</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1854170%2F1009fcc7-9eb9-4db5-a3d4-18cb7ae7e4dd.jpeg</url>
      <title>DEV Community: Anu Charley K</title>
      <link>https://dev.to/ack</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ack"/>
    <language>en</language>
    <item>
      <title>Mastering LaTeX: A Beginner’s Guide to Typesetting Professional Documents</title>
      <dc:creator>Anu Charley K</dc:creator>
      <pubDate>Thu, 08 Aug 2024 11:55:06 +0000</pubDate>
      <link>https://dev.to/ack/mastering-latex-a-beginners-guide-to-typesetting-professional-documents-aj1</link>
      <guid>https://dev.to/ack/mastering-latex-a-beginners-guide-to-typesetting-professional-documents-aj1</guid>
      <description>&lt;p&gt;LaTeX is a powerful typesetting system widely used for creating well-formatted, professional-quality documents. From academic papers to resumes, LaTeX can handle a variety of document types with precision. In this blog, we'll explore the basics of LaTeX and demonstrate how to create a CV. Additionally, we'll highlight how the same LaTeX packages can be used for different types of documents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is LaTeX?&lt;/strong&gt;&lt;br&gt;
LaTeX is a typesetting system that allows you to control the layout and formatting of your documents through plain text commands. Unlike traditional word processors, LaTeX separates content from formatting, enabling precise control over document appearance. It's particularly popular for academic writing, technical reports, and professional resumes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;LaTeX Basics: A Simple CV Example&lt;/strong&gt;&lt;br&gt;
Let’s start with a basic LaTeX code example for a CV:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\geometry{top=1in, bottom=1in, left=1in, right=1in}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{lipsum} % For dummy text
\usepackage[hidelinks]{hyperref} % For hyperlinks

% Set up header and footer
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\textbf{Your Name}}
\fancyhead[R]{CV}
\fancyfoot[C]{Page \thepage}

\begin{document}

\begin{center}
\includegraphics[width=0.2\textwidth]{profile.jpg} % Add your profile picture here
\end{center}

\begin{center}
\textbf{\Huge Your Name} \\
\textit{City, Country} \\
\textit{Date of Birth: DD\textsuperscript{th} Month YYYY} \\
\textit{\href{mailto:your.email@example.com}{your.email@example.com}} | \textit{(+Country Code)-Phone Number} | \textit{\href{https://www.linkedin.com/in/yourprofile}{LinkedIn}} | \textit{\href{https://github.com/yourprofile}{GitHub}}
\end{center}

\section*{Objective}
\lipsum[1] % Replace with your objective or summary

\section*{Education}
\textbf{Your Degree} \\
Your University, Graduation Date \\
\lipsum[2] % Replace with details of your education

\section*{Experience}
\textbf{Your Job Title} \\
Your Company, Date Range \\
\lipsum[3] % Replace with details of your experience

\section*{Skills}
\begin{itemize}
  \item Skill 1
  \item Skill 2
  \item Skill 3
\end{itemize}

\section*{Languages}
\begin{itemize}
  \item Language 1 - Proficiency
  \item Language 2 - Proficiency
\end{itemize}

\end{document}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Code Breakdown&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Document Class and Packages&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\geometry{top=1in, bottom=1in, left=1in, right=1in}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{lipsum} % For dummy text
\usepackage[hidelinks]{hyperref} % For hyperlinks
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;\documentclass[a4paper,10pt]{article}: Defines the document type and layout.&lt;/li&gt;
&lt;li&gt;\usepackage[utf8]{inputenc}: Supports UTF-8 encoding.&lt;/li&gt;
&lt;li&gt;\usepackage{geometry}: Configures page margins.&lt;/li&gt;
&lt;li&gt;\usepackage{graphicx}: Enables image inclusion.&lt;/li&gt;
&lt;li&gt;\usepackage{fancyhdr}: Customizes headers and footers.&lt;/li&gt;
&lt;li&gt;\usepackage{lipsum}: Provides placeholder text.&lt;/li&gt;
&lt;li&gt;\usepackage[hidelinks]{hyperref}: Adds clickable hyperlinks without 
visible link colors.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;2. Headers and Footers&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\textbf{Your Name}}
\fancyhead[R]{CV}
\fancyfoot[C]{Page \thepage}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;\pagestyle{fancy}: Applies custom header and footer style.&lt;/li&gt;
&lt;li&gt;\fancyhf{}: Clears existing header and footer settings.&lt;/li&gt;
&lt;li&gt;\fancyhead[L]{\textbf{Your Name}}: Sets the left header.&lt;/li&gt;
&lt;li&gt;\fancyhead[R]{CV}: Sets the right header.&lt;/li&gt;
&lt;li&gt;\fancyfoot[C]{Page \thepage}: Centers the page number in the footer.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;3. Document Content&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;\begin{document}

\begin{center}
\includegraphics[width=0.2\textwidth]{profile.jpg} % Add your profile picture here
\end{center}

\begin{center}
\textbf{\Huge Your Name} \\
\textit{City, Country} \\
\textit{Date of Birth: DD\textsuperscript{th} Month YYYY} \\
\textit{\href{mailto:your.email@example.com}{your.email@example.com}} | \textit{(+Country Code)-Phone Number} | \textit{\href{https://www.linkedin.com/in/yourprofile}{LinkedIn}} | \textit{\href{https://github.com/yourprofile}{GitHub}}
\end{center}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;\begin{document}: Starts the document content.&lt;/li&gt;
&lt;li&gt;\includegraphics: Inserts an image.&lt;/li&gt;
&lt;li&gt;\textbf{}: Bold text.&lt;/li&gt;
&lt;li&gt;\textit{}: Italic text.&lt;/li&gt;
&lt;li&gt;\href{}{}: Creates hyperlinks.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;4. Sections and Lists&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;\section*{Objective}
\lipsum[1] % Replace with your objective or summary

\section*{Education}
\textbf{Your Degree} \\
Your University, Graduation Date \\
\lipsum[2] % Replace with details of your education

\section*{Experience}
\textbf{Your Job Title} \\
Your Company, Date Range \\
\lipsum[3] % Replace with details of your experience

\section*{Skills}
\begin{itemize}
  \item Skill 1
  \item Skill 2
  \item Skill 3
\end{itemize}

\section*{Languages}
\begin{itemize}
  \item Language 1 - Proficiency
  \item Language 2 - Proficiency
\end{itemize}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;em&gt;\section{}&lt;/em&gt;*: Creates a section without numbering.&lt;/li&gt;
&lt;li&gt;\begin{itemize}: Starts a bulleted list.&lt;/li&gt;
&lt;li&gt;\item: Adds an item to the list.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;LaTeX for Different Types of Documents&lt;/strong&gt;&lt;br&gt;
One of LaTeX's strengths is its versatility. The same packages and commands used for a CV can be applied to other types of documents, such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Resumes: Similar to CVs, but often with a different focus.&lt;/li&gt;
&lt;li&gt;Cover Letters: Use LaTeX to format professional cover letters.&lt;/li&gt;
&lt;li&gt;Academic Papers: LaTeX excels at managing complex structures, citations, and references.&lt;/li&gt;
&lt;li&gt;Reports and Presentations: Customize layouts for various types of reports and presentations.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Common Packages for Different Documents&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;geometry: Adjust page margins and layout.&lt;/li&gt;
&lt;li&gt;graphicx: Include and manage images.&lt;/li&gt;
&lt;li&gt;fancyhdr: Customize headers and footers.&lt;/li&gt;
&lt;li&gt;hyperref: Add and manage hyperlinks.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;By learning how to use these packages effectively, you can create a wide range of documents with LaTeX, each tailored to your specific needs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;br&gt;
LaTeX is a powerful tool that offers precise control over document formatting and layout. By starting with simple examples like a CV, you can gradually explore more complex uses of LaTeX. Remember, the same packages and techniques apply across various document types, making LaTeX a versatile choice for many professional and academic needs.&lt;/p&gt;

</description>
      <category>learning</category>
      <category>overleaf</category>
      <category>documentation</category>
      <category>letex</category>
    </item>
    <item>
      <title>From Web Development to LaTeX: A New Skill for Professional Documents</title>
      <dc:creator>Anu Charley K</dc:creator>
      <pubDate>Thu, 08 Aug 2024 09:14:40 +0000</pubDate>
      <link>https://dev.to/ack/from-web-development-to-latex-a-new-skill-for-professional-documents-4i79</link>
      <guid>https://dev.to/ack/from-web-development-to-latex-a-new-skill-for-professional-documents-4i79</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt; &lt;br&gt;
Life’s journey often leads us down unexpected paths. My recent exploration took me from brushing up on web development basics to diving into the world of LaTeX. Why the shift? As I navigated the job market, I realized the importance of a well-crafted CV and how LaTeX could help create one. In this blog, I’ll share my experience learning LaTeX, the challenges I faced, and why this skill is invaluable for creating professional documents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why the Shift?&lt;/strong&gt;&lt;br&gt;
I was deeply involved in web development, focusing on HTML and CSS. However, my job search revealed the distinction between a CV and a resume, especially in different regions. This realization prompted me to learn LaTeX to craft a standout CV tailored to my needs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A Brief Hiatus&lt;/strong&gt;&lt;br&gt;
You might have noticed a pause in my blog updates recently. The reason? I was immersing myself in learning LaTeX to create a professional CV. This new skill was crucial for my job search and required my full attention.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Exploring LaTeX &amp;amp; Overleaf&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is LaTeX?&lt;/strong&gt;&lt;br&gt;
LaTeX is a typesetting system known for its precision and control over document formatting. Unlike traditional word processors, it uses plain text files to manage complex layouts and formatting. LaTeX is not only useful for CVs but also for academic papers, technical documents, and more. Key features include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Precision Formatting&lt;/strong&gt;: Control over every aspect of document layout.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Document Classes&lt;/strong&gt;: Templates for various types of documents like articles, reports, and books.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Packages&lt;/strong&gt;: Extensions that add functionality, such as including graphics or managing bibliographies.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Why Overleaf?&lt;/strong&gt;&lt;br&gt;
Overleaf is an online LaTeX editor that simplifies the process of working with LaTeX. It offers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Real-time Collaboration: Multiple users can work on a document simultaneously.&lt;/li&gt;
&lt;li&gt;User-friendly Interface: Reduces the learning curve for LaTeX syntax.&lt;/li&gt;
&lt;li&gt;Templates: Pre-designed templates for various document types, including CVs and resumes.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Crafting My CV&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Personal Experience&lt;/strong&gt;&lt;br&gt;
I decided to build my CV template from scratch to ensure it met my specific needs. Starting with a basic template, I customized it by adding my profile picture, organizing content, and refining the layout. This hands-on approach allowed me to create a professional document that truly represented my qualifications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Challenges Encountered&lt;/strong&gt;&lt;br&gt;
Getting accustomed to LaTeX’s syntax was challenging, particularly when formatting elements like images and hyperlinks. I encountered issues with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Image Inclusion&lt;/strong&gt;: Correctly formatting and positioning images in the document.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hyperlink Formatting&lt;/strong&gt;: Ensuring clickable links in the CV.
I overcame these challenges through research and experimentation.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What’s Next?&lt;/strong&gt;&lt;br&gt;
In my next blog post, I’ll cover the basics of LaTeX syntax and provide guidance for those interested in learning this powerful tool. After that, we’ll return to our web development journey and continue exploring new technologies and techniques.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;br&gt;
Learning LaTeX has been a rewarding experience, offering a powerful tool for creating polished, professional documents. I hope this blog serves as a guide for others who, like me, are navigating the intricacies of professional document creation. If you're struggling with similar challenges, I hope my journey can provide some helpful insights.&lt;/p&gt;

</description>
      <category>latexjourney</category>
      <category>cvcreation</category>
      <category>webdev</category>
      <category>overleaf</category>
    </item>
    <item>
      <title>Journey Through CSS: Mastering Colors and Moving Forward</title>
      <dc:creator>Anu Charley K</dc:creator>
      <pubDate>Sat, 03 Aug 2024 17:55:19 +0000</pubDate>
      <link>https://dev.to/ack/journey-through-css-mastering-colors-and-moving-forward-59li</link>
      <guid>https://dev.to/ack/journey-through-css-mastering-colors-and-moving-forward-59li</guid>
      <description>&lt;p&gt;Hey Community,&lt;/p&gt;

&lt;p&gt;I'm excited to share my latest accomplishment with you all. I recently completed the &lt;strong&gt;"Learn CSS Colors by Building a Set of Colored Markers"&lt;/strong&gt; course through &lt;strong&gt;freeCodeCamp&lt;/strong&gt;. This course was a fantastic dive into the world of CSS colors, teaching me various ways to set color values and pair colors effectively. Understanding color theory and how to apply it to web design can significantly enhance the aesthetic appeal of a webpage, making it more engaging for users.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Learnings&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Different methods to set color values (hex, RGB, HSL, etc.)&lt;/li&gt;
&lt;li&gt;Techniques to pair colors harmoniously&lt;/li&gt;
&lt;li&gt;Practical application by building a set of colored markers
Here are a few code snippets I found particularly useful:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Setting Colors with Hex Values:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.marker-red {
  background-color: #FF0000;
}

.marker-blue {
  background-color: #0000FF;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Setting Colors with RGB Values:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.marker-green {
  background-color: rgb(0, 255, 0);
}

.marker-yellow {
  background-color: rgb(255, 255, 0);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Setting Colors with HSL Values:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.marker-purple {
  background-color: hsl(300, 100%, 50%);
}

.marker-orange {
  background-color: hsl(30, 100%, 50%);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Completing this course has not only expanded my CSS skills but also given me a deeper appreciation for the importance of color in web design.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What's Next?&lt;/strong&gt;&lt;br&gt;
I’m thrilled to continue my learning journey with the next chapter, which focuses on forms. Forms are a crucial element of user interaction on websites, and mastering their design and functionality is essential for any web developer. In this chapter, I’ll be diving into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Creating and styling forms&lt;/li&gt;
&lt;li&gt;Understanding form elements and their attributes&lt;/li&gt;
&lt;li&gt;Enhancing user experience with well-designed forms&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I look forward to sharing more insights and learnings as I progress through this next chapter.&lt;/p&gt;

&lt;p&gt;If you’re new to coding or looking for great resources, I highly recommend checking out freeCodeCamp. It’s a fantastic platform with structured courses that guide you through learning web development step by step.&lt;/p&gt;

&lt;p&gt;Stay tuned for more updates, and feel free to share any tips or resources you think might be helpful. Let’s continue to learn and grow together!&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>css</category>
      <category>frontend</category>
      <category>learning</category>
    </item>
    <item>
      <title>Just Wrapped Up: Cafe Menu Project!</title>
      <dc:creator>Anu Charley K</dc:creator>
      <pubDate>Tue, 30 Jul 2024 21:53:30 +0000</pubDate>
      <link>https://dev.to/ack/just-wrapped-up-cafe-menu-project-2ndp</link>
      <guid>https://dev.to/ack/just-wrapped-up-cafe-menu-project-2ndp</guid>
      <description>&lt;p&gt;Hey everyone! I’m excited to share that I’ve just completed the “Learn Basic CSS by Building a Cafe Menu” project. It was a fantastic opportunity to sharpen my CSS skills and create a neat, functional layout.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What’s Next?&lt;/strong&gt;&lt;br&gt;
I’m diving into the “Learn CSS Colors by Building a Set of Colored Markers” project next. Can’t wait to play around with colors and take my styling techniques to the next level!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"The best way to learn is by doing." – Richard Branson&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Thanks for joining me on this journey! If you have any tips or projects of your own, I’d love to hear about them in the comments. Let’s support each other and keep learning together!&lt;/p&gt;

</description>
      <category>cssbasics</category>
      <category>htmlandcss</category>
      <category>learningcsscolors</category>
      <category>frontendjourney</category>
    </item>
    <item>
      <title>Reconnecting with Front-End Development: Building a Cat Photo App</title>
      <dc:creator>Anu Charley K</dc:creator>
      <pubDate>Tue, 30 Jul 2024 20:22:54 +0000</pubDate>
      <link>https://dev.to/ack/reconnecting-with-front-end-development-building-a-cat-photo-app-598k</link>
      <guid>https://dev.to/ack/reconnecting-with-front-end-development-building-a-cat-photo-app-598k</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hi everyone, Anu here! After a long break from the IT field, I’ve decided to dive back into the programming world. With a background in HTML, CSS, and Bootstrap, my focus is on learning modern front-end technologies. I started with freeCodeCamp’s "Learn HTML by Building a Cat Photo App" project to brush up on my basics. Here’s how it went.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why freeCodeCamp?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;FreeCodeCamp offers a structured and interactive way to learn web development. Their hands-on projects help solidify concepts through practice, which is perfect for someone like me who’s returning to the field after a break.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Revisiting the Basics:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Even though I have prior experience with HTML, CSS, and Bootstrap, I found it essential to start from the ground up to rebuild my confidence and ensure a strong foundation. Here’s a glimpse into my learning process:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;HTML Structure:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Revisiting the basic structure of an HTML document reminded me of the importance of well-organized code. It felt like reuniting with an old friend.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Checkbox with Text:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Adding a checkbox with the text "Loving" next to it was a simple yet significant task. Here’s the code I used:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;input type="checkbox" id="loving" name="loving"&amp;gt;
&amp;lt;label for="loving"&amp;gt;Loving&amp;lt;/label&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This helped me recall how important it is to properly associate labels with form elements for accessibility.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Images and Links:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Adding cat images and creating links reinforced my understanding of attributes like &lt;code&gt;src&lt;/code&gt;, &lt;code&gt;alt&lt;/code&gt;, and &lt;code&gt;href&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Semantic HTML:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Emphasizing semantic HTML elements made me appreciate their role in accessibility and SEO more deeply this time around.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Challenges and Insights:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Rediscovering the basics wasn’t without its challenges. Remembering the correct syntax and best practices took some effort, but it was rewarding to see my skills sharpening. It also highlighted areas where I could improve and learn more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Building the Cat Photo App was a fun and effective way to brush up on my HTML skills. FreeCodeCamp’s project-based approach made the learning process engaging and practical. I’m excited to continue my journey and tackle more projects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What’s Next?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Next, I plan to dive into CSS to style my web pages and make them visually appealing. Stay tuned for my updates and feel free to join me on this learning journey!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Your Thoughts?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you’re also brushing up on your skills or starting fresh, I’d love to hear about your experiences. Share your thoughts and let’s support each other in this journey.&lt;/p&gt;

</description>
      <category>codingjourney</category>
      <category>frontend</category>
      <category>backtocoding</category>
      <category>learntocode</category>
    </item>
  </channel>
</rss>
