<?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: Piyush Kose</title>
    <description>The latest articles on DEV Community by Piyush Kose (@piyushkose).</description>
    <link>https://dev.to/piyushkose</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%2F3269118%2Fef349717-9150-4438-a47a-836e205eb930.jpg</url>
      <title>DEV Community: Piyush Kose</title>
      <link>https://dev.to/piyushkose</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/piyushkose"/>
    <language>en</language>
    <item>
      <title>🎨 Mastering the Basics of CSS: A Beginner-Friendly Guide ~ devsync.in</title>
      <dc:creator>Piyush Kose</dc:creator>
      <pubDate>Wed, 18 Jun 2025 05:50:24 +0000</pubDate>
      <link>https://dev.to/piyushkose/mastering-the-basics-of-css-a-beginner-friendly-guide-devsyncin-1cfh</link>
      <guid>https://dev.to/piyushkose/mastering-the-basics-of-css-a-beginner-friendly-guide-devsyncin-1cfh</guid>
      <description>&lt;p&gt;Hey Devs! 👋&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I recently started learning front-end development under devsync.in, and one of the first things that clicked for me was how powerful CSS can be. HTML gives you the structure, but CSS? That’s where the magic happens — colors, spacing, layouts, and even animations.&lt;/em&gt;&lt;br&gt;
In this post, I’ll walk you through the basics of CSS — from how it works to some essential tips I wish I knew when I was just getting started.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🚀 What is CSS?&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;CSS stands for Cascading Style Sheets, and its main job is to style HTML elements. Think of HTML as the skeleton of your webpage, and CSS as the clothes it wears.&lt;br&gt;
&lt;/p&gt;


&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!-- HTML --&amp;gt;
&amp;lt;h1&amp;gt;Hello, World!&amp;lt;/h1&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/* CSS */
h1 {
  color: blue;
  font-size: 32px;
  text-align: center;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🧱 CSS Syntax Basics&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let’s break down a simple CSS rule:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;selector {
  property: value;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;p {
  color: gray;
  font-family: Arial, sans-serif;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🔗 3 Ways to Add CSS&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
Inline (not great for big projects):
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;h1 style="color: red;"&amp;gt;Hello&amp;lt;/h1&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
Internal:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;style&amp;gt;
  h1 { color: green; }
&amp;lt;/style&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
External (best practice):
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;link rel="stylesheet" href="styles.css"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I personally prefer external stylesheets — it's how I was taught at &lt;a href="https://dev.tourl"&gt;devsync.in&lt;/a&gt;, and it really helps in keeping things clean and scalable.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;📐 Understanding the CSS Box Model&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;One of the most important concepts I've learned at devsync.in is the box model.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Each HTML element is a box made of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Content&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Padding&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Border&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Margin&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Think of it like layers from the inside out.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;💡 Pro tip: Add this to your CSS reset:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;* {
  box-sizing: border-box;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;This makes layout calculations much easier!&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🧠 Final Thoughts&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;Learning CSS with the support of &lt;a href="https://dev.tourl"&gt;devsync.in&lt;/a&gt; has been a game-changer for me. It’s not about memorizing every property — it’s about building a solid foundation and experimenting as you go. Once you understand the basics, it becomes way easier (and more fun!) to create beautiful web pages.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;If you're also learning or struggling with CSS, I’d love to connect and share tips. Drop your thoughts in the comments — let’s grow together! 🌱&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>career</category>
      <category>css</category>
    </item>
    <item>
      <title>📄 HTML Blog — "Learning HTML Under Devsync"</title>
      <dc:creator>Piyush Kose</dc:creator>
      <pubDate>Tue, 17 Jun 2025 15:37:46 +0000</pubDate>
      <link>https://dev.to/piyushkose/html-blog-learning-html-under-devsync-4ijj</link>
      <guid>https://dev.to/piyushkose/html-blog-learning-html-under-devsync-4ijj</guid>
      <description>&lt;p&gt;&lt;strong&gt;🚀 Introduction&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;HTML (HyperText Markup Language) is the foundation of all websites. It defines the structure of your webpage and is the first step in your web development journey.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔍 Why Learn HTML?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;It's beginner-friendly and easy to understand&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Forms the backbone of websites&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Used with CSS and JavaScript to create interactive UIs&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🧱 Basic HTML Structure&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;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;title&amp;gt;Welcome to Devsync&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;h1&amp;gt;Hello, Devsync Learner!&amp;lt;/h1&amp;gt;
  &amp;lt;p&amp;gt;This is your first HTML page.&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🏷️ Common HTML Tags&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let’s look at some useful tags you'll use frequently.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Headings and Paragraphs
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;h1&amp;gt;This is a heading&amp;lt;/h1&amp;gt;
&amp;lt;p&amp;gt;This is a paragraph of text.&amp;lt;/p&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Links and Images
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;a href="https://devsync.in"&amp;gt;Visit Devsync&amp;lt;/a&amp;gt;
&amp;lt;img src="logo.png" alt="Devsync Logo" /&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Lists
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;ul&amp;gt;
  &amp;lt;li&amp;gt;HTML&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;CSS&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;JavaScript&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Buttons and Inputs
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;input type="text" placeholder="Enter your name" /&amp;gt;
&amp;lt;button&amp;gt;Submit&amp;lt;/button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;💡 Learning Under Devsync&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;While learning under Devsync, I’ve realized how powerful the basics are. Mastering HTML helps in:&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Creating solid webpage structures&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Understanding frontend frameworks better (like React, which I’ll soon dive into)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Collaborating with developers on real-world projects&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;If you're just starting out, focus on understanding these simple tags. You’ll soon be building beautiful websites!&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅ Mini Project: Create a Contact Card&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;&amp;lt;div&amp;gt;
  &amp;lt;h2&amp;gt;Contact Me&amp;lt;/h2&amp;gt;
  &amp;lt;p&amp;gt;Name: Piyush Kose&amp;lt;/p&amp;gt;
  &amp;lt;p&amp;gt;Email: piyushkose.04@gmail.com&amp;lt;/p&amp;gt;
  &amp;lt;a href="https://github.com/devsyncin"&amp;gt;GitHub - Devsync&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;📚 Final Thoughts&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;_HTML is not just markup – it’s your first step toward becoming a developer. Whether you're a beginner or refreshing your skills, start with HTML and grow with the Devsync community.&lt;/p&gt;

&lt;p&gt;If you're learning like me, share your progress, blogs, or projects. Let’s grow together! 💻✨_&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔗 Stay Connected&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;🟢 Connect with me&lt;br&gt;
🔵 Explore more at &lt;a href="https://dev.tourl"&gt;Devsync.in&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
