<?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: Harish raj</title>
    <description>The latest articles on DEV Community by Harish raj (@harishraj01100boop).</description>
    <link>https://dev.to/harishraj01100boop</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4110792%2F5e035965-4bd5-401a-8ff6-3e35efc56359.jpg</url>
      <title>DEV Community: Harish raj</title>
      <link>https://dev.to/harishraj01100boop</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/harishraj01100boop"/>
    <language>en</language>
    <item>
      <title>day 1 piyalagam "resume"</title>
      <dc:creator>Harish raj</dc:creator>
      <pubDate>Thu, 10 Sep 2026 18:07:22 +0000</pubDate>
      <link>https://dev.to/harishraj01100boop/day-1-piyalagam-resume-49cc</link>
      <guid>https://dev.to/harishraj01100boop/day-1-piyalagam-resume-49cc</guid>
      <description>&lt;h1&gt;
  
  
  Creating a Resume Using HTML &amp;amp; CSS — My Day 1 Learning at Payilagam
&lt;/h1&gt;

&lt;p&gt;Today, I started working on an interesting mini project at &lt;strong&gt;Payilagam Institute — creating a Resume using HTML and CSS&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead of directly writing the code, I learned that &lt;strong&gt;planning the layout first&lt;/strong&gt; is an important step. Today, I mainly focused on planning the resume structure and creating a basic grid layout using CSS. I will continue the remaining content tomorrow.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. First Step — Planning
&lt;/h2&gt;

&lt;p&gt;Before starting the actual HTML and CSS, I learned how important it is to plan the structure of the resume.&lt;/p&gt;

&lt;p&gt;This planning helps to decide how the content should be arranged on the webpage before writing the CSS.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Creating a Grid Layout
&lt;/h2&gt;

&lt;p&gt;After planning the structure, I started creating the basic layout using &lt;strong&gt;CSS Grid&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The main property I learned today was:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;display&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;grid&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;CSS Grid is useful for creating rows and columns and arranging different sections of a webpage.&lt;/p&gt;

&lt;p&gt;I also learned:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;grid-template-columns&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="err"&gt;1&lt;/span&gt;&lt;span class="nt"&gt;fr&lt;/span&gt; &lt;span class="err"&gt;1&lt;/span&gt;&lt;span class="nt"&gt;fr&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This creates &lt;strong&gt;two equal columns&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.container&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;grid&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="py"&gt;grid-template-columns&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;1&lt;/span&gt;&lt;span class="n"&gt;fr&lt;/span&gt; &lt;span class="m"&gt;1&lt;/span&gt;&lt;span class="n"&gt;fr&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here, &lt;code&gt;1fr 1fr&lt;/code&gt; means that the available space is divided equally between the two columns.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Understanding &lt;code&gt;vh&lt;/code&gt; and &lt;code&gt;vw&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;Today, I also learned about two useful CSS units:&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;code&gt;vh&lt;/code&gt; — Viewport Height
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;vh&lt;/code&gt; represents a percentage of the browser's viewport height.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;height&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="err"&gt;100&lt;/span&gt;&lt;span class="nt"&gt;vh&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;100vh&lt;/code&gt; means the element can take the full height of the viewport.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;code&gt;vw&lt;/code&gt; — Viewport Width
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;vw&lt;/code&gt; represents a percentage of the browser's viewport width.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;width&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="err"&gt;100&lt;/span&gt;&lt;span class="nt"&gt;vw&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;100vw&lt;/code&gt; represents the full width of the viewport.&lt;/p&gt;

&lt;p&gt;These units are useful when creating layouts that should adjust according to the screen size.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. &lt;code&gt;box-sizing: border-box&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;Another important CSS concept I learned today was:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;box-sizing&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;border-box&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It helps control how the width and height of an element are calculated.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;box-sizing&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;border-box&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Using &lt;code&gt;border-box&lt;/code&gt; makes it easier to manage the size of elements when padding and borders are added.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Using &lt;code&gt;px&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;I also learned about using &lt;strong&gt;pixels (&lt;code&gt;px&lt;/code&gt;)&lt;/strong&gt; in CSS.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;font-size&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="err"&gt;16&lt;/span&gt;&lt;span class="nt"&gt;px&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;span class="nt"&gt;margin&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="err"&gt;10&lt;/span&gt;&lt;span class="nt"&gt;px&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;span class="nt"&gt;padding&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="err"&gt;20&lt;/span&gt;&lt;span class="nt"&gt;px&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Pixels are useful when I want to specify a particular fixed size for an element.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Using &lt;code&gt;margin: auto&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;Today I also learned this simple but useful CSS technique:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;margin&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;auto&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It can be used to automatically distribute the available margin. One common use is centering a block element horizontally when it has a defined width.&lt;/p&gt;

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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.container&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;80%&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;margin&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;auto&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This helps create a cleaner and more centered webpage layout.&lt;/p&gt;

&lt;h2&gt;
  
  
  7. HTML Shortcut — Emmet
&lt;/h2&gt;

&lt;p&gt;One small but very useful shortcut I learned is &lt;strong&gt;Emmet&lt;/strong&gt; in VS Code.&lt;/p&gt;

&lt;p&gt;Instead of writing:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"container"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I can type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;div.container
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and press &lt;strong&gt;Enter/Tab&lt;/strong&gt;, depending on the Emmet setup.&lt;/p&gt;

&lt;p&gt;VS Code automatically generates:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"container"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This makes writing HTML much faster.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned Today
&lt;/h2&gt;

&lt;p&gt;Today, my main focus was on understanding the &lt;strong&gt;planning and basic layout structure&lt;/strong&gt; of a resume website.&lt;/p&gt;

&lt;p&gt;I learned:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Planning the webpage before coding&lt;/li&gt;
&lt;li&gt;Creating a layout using &lt;code&gt;display: grid&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Using &lt;code&gt;grid-template-columns&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Understanding &lt;code&gt;1fr 1fr&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Using &lt;code&gt;vh&lt;/code&gt; and &lt;code&gt;vw&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Understanding &lt;code&gt;box-sizing: border-box&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Using &lt;code&gt;px&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Using &lt;code&gt;margin: auto&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Using Emmet shortcuts in VS Code&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This was my &lt;strong&gt;Day 1 progress in creating a Resume using HTML and CSS&lt;/strong&gt;. I have completed the basic planning and started building the grid structure. I will continue the remaining parts of the resume tomorrow and learn more while developing the project.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Day 1: Plan → Structure → Grid → Learn CSS Basics → Build&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Learning step by step, one concept at a time.&lt;/em&gt;&lt;br&gt;
&lt;em&gt;— Payilagam Institute&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>css</category>
      <category>frontend</category>
      <category>html</category>
    </item>
  </channel>
</rss>
