<?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>Forem: Vijayaraj Udhayakumar</title>
    <description>The latest articles on Forem by Vijayaraj Udhayakumar (@vijayaraj_21).</description>
    <link>https://forem.com/vijayaraj_21</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%2F3339285%2Fa06c52b2-a870-4922-835b-01e9062528ee.jpg</url>
      <title>Forem: Vijayaraj Udhayakumar</title>
      <link>https://forem.com/vijayaraj_21</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/vijayaraj_21"/>
    <language>en</language>
    <item>
      <title>Day 3 of Learning Web Development: My Third Day learning HTML &amp; CSS</title>
      <dc:creator>Vijayaraj Udhayakumar</dc:creator>
      <pubDate>Fri, 11 Jul 2025 04:17:11 +0000</pubDate>
      <link>https://forem.com/vijayaraj_21/day-3-of-learning-web-development-my-third-day-learning-html-css-lj3</link>
      <guid>https://forem.com/vijayaraj_21/day-3-of-learning-web-development-my-third-day-learning-html-css-lj3</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hey everyone! 👋&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is my second blog post, Today I have been learned some new Interesting Topics and this is my Day 3 of new adventure.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is CSS flex?
&lt;/h2&gt;

&lt;p&gt;1.Flex is short for the Flexible Layout module.&lt;/p&gt;

&lt;p&gt;2.Flex is a layout method for arranging items in rows or columns.&lt;/p&gt;

&lt;p&gt;3.Flex makes it easier to design a flexible responsive layout structure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Flex Components
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;a Flex Container&lt;/strong&gt; - the parent (container) &lt;/p&gt; element.&lt;br&gt;
&lt;strong&gt;Flex Items&lt;/strong&gt; - the items inside the container .

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

&lt;pre class="highlight plaintext"&gt;&lt;code&gt; &amp;lt;div class="flex-container"&amp;gt;
  &amp;lt;div&amp;gt;1&amp;lt;/div&amp;gt;
  &amp;lt;div&amp;gt;2&amp;lt;/div&amp;gt;
  &amp;lt;div&amp;gt;3&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;



&lt;h2&gt;
  
  
  The flex-direction property
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;row&lt;/li&gt;
&lt;li&gt;column&lt;/li&gt;
&lt;li&gt;row-reverse&lt;/li&gt;
&lt;li&gt;column-reverse&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Few Example&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Row it displays the flex items horizontally:
&lt;/li&gt;
&lt;/ul&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.flex-container {
  display: flex;
  flex-direction: row;
}
&lt;/code&gt;&lt;/pre&gt;



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

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;A B C
&lt;/code&gt;&lt;/pre&gt;

&lt;ul&gt;
&lt;li&gt;Column displays the flex items vertically:
&lt;/li&gt;
&lt;/ul&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.flex-container{
  display: flex;
  flex-direction: column;
}
&lt;/code&gt;&lt;/pre&gt;



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

&lt;p&gt;A&lt;br&gt;
B&lt;br&gt;
C&lt;/p&gt;

&lt;h2&gt;
  
  
  What is CSS Margin?
&lt;/h2&gt;

&lt;p&gt;The Margin are used to create space in &lt;strong&gt;Outside of the Elements&lt;/strong&gt;. &lt;/p&gt;

&lt;h2&gt;
  
  
  CSS properties
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;margin-top&lt;/li&gt;
&lt;li&gt;margin-right&lt;/li&gt;
&lt;li&gt;margin-left&lt;/li&gt;
&lt;li&gt;margin-auto&lt;/li&gt;
&lt;li&gt;margin-length&lt;/li&gt;
&lt;li&gt;margin-width &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What is CSS Padding?
&lt;/h2&gt;

&lt;p&gt;Padding is used to create space &lt;strong&gt;Inside of the border&lt;/strong&gt;.&lt;br&gt;
The CSS padding properties are used to generate space around an element's content, inside of any defined borders.&lt;/p&gt;

&lt;p&gt;With CSS, you have full control over the padding. There are properties for setting the padding for each side of an element (top, right, bottom, and left).&lt;/p&gt;

&lt;h2&gt;
  
  
  CSS properties
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;padding-top&lt;/li&gt;
&lt;li&gt;padding-right&lt;/li&gt;
&lt;li&gt;padding-bottom&lt;/li&gt;
&lt;li&gt;&lt;p&gt;padding-left&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;length - specifies a padding in px, pt, cm, etc.&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;div {
  padding-top: 50px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 80px;
}
&lt;/code&gt;&lt;/pre&gt;



&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Allign Items used for column.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Justify-content used for row. It Always flex direction.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Out of the box use as Margin.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Inside the box use as Padding.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5ocyzagps02q6xb6kw63.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5ocyzagps02q6xb6kw63.webp" alt=" " width="800" height="560"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Interesting Website to practice Flex:
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Website: &lt;a href="https://dev.tourl"&gt;https://flexboxfroggy.com&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It's a games. To understanding the concept of the Flex concepts.&lt;/p&gt;

&lt;p&gt;🎯 This is the Day 3 of learning &lt;strong&gt;Web Development&lt;/strong&gt;. I’m pushing myself to learn something new and share what I explored some core concepts and tools in frontend development. &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>java</category>
    </item>
    <item>
      <title>Getting started with Web Development: My Second Day learning HTML &amp; CSS</title>
      <dc:creator>Vijayaraj Udhayakumar</dc:creator>
      <pubDate>Wed, 09 Jul 2025 17:51:20 +0000</pubDate>
      <link>https://forem.com/vijayaraj_21/getting-started-with-web-development-my-second-day-learning-html-css-4i3i</link>
      <guid>https://forem.com/vijayaraj_21/getting-started-with-web-development-my-second-day-learning-html-css-4i3i</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hey everyone!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;this is my very first blog post, and I'm excited to share my daily journey into web development with you and today was Day 2 of this new adventure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Recap of Day 1:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is HTML &amp;amp; CSS?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In Day 1 class is we discuss about basics of &lt;strong&gt;HTML and CSS&lt;/strong&gt;. Whats is &lt;strong&gt;HTML &amp;amp; CSS&lt;/strong&gt; then in linux which software tools has been use? &lt;strong&gt;VS CODIUM&lt;/strong&gt; software tools is used in linux.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HTML(HyperText Markup language) is used to structure content on the web. It's a skeleton of a web page.&lt;/li&gt;
&lt;li&gt;CSS(Cascading Style Sheet) is used to style the content. Its adds colors,layout. It's a humans figures.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Today Discussions:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;what is the ** alternative of HTML?**&lt;/p&gt;

&lt;p&gt;The alternative of HTML is :&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;XML&lt;/strong&gt;(eXtensible Markup Language)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;YAML&lt;/strong&gt;(YAML Ain't Markup Language)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CSV&lt;/strong&gt;(Comma Seperated Values) etc..&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;what is &lt;strong&gt;GIT?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Git is a &lt;strong&gt;Version Control System(VSC)&lt;/strong&gt;. There are two types of &lt;strong&gt;VSC&lt;/strong&gt;. It's no Need Internet.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Centralized VSC&lt;/li&gt;
&lt;li&gt;Distributed VSC&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;What is &lt;strong&gt;GITLAB?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Gitlab is Web based &lt;strong&gt;DEVOPS&lt;/strong&gt; platforms.&lt;br&gt;
The developers pull and push the code and they want to customer base. It's needs Internet.&lt;/p&gt;

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

&lt;p&gt;Now we build a &lt;strong&gt;Protfolio Project&lt;/strong&gt;.&lt;br&gt;
In HTML Structure Contains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Header&lt;/li&gt;
&lt;li&gt;Section&lt;/li&gt;
&lt;li&gt;Section&lt;/li&gt;
&lt;li&gt;Section&lt;/li&gt;
&lt;li&gt;Footer&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Header&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Navigation Menu&lt;/li&gt;
&lt;li&gt;Search Bar
&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;header&amp;gt;
&amp;lt;h1&amp;gt;Vijayaraj&amp;lt;/h1&amp;gt;
&amp;lt;/header&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;&lt;strong&gt;Section&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Define a Section of content&lt;/p&gt;


&lt;h2&gt;HTML Tags&lt;/h2&gt;
&lt;p&gt;It is a fundamental building blocks of HTML&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;List&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We discuss two types of List:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ordered List and &lt;/li&gt;
&lt;li&gt;Unordered list&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;-Ordered List - Numbers and Alphabets&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;ol&amp;gt;
&amp;lt;li&amp;gt;Item 1&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Item 2&amp;lt;/li&amp;gt;
&amp;lt;/ol&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;-Unordered List - Bullets,Square etc&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;ul&amp;gt;
&amp;lt;li&amp;gt;Item 1&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Item 2&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Anchor Tag&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;it is used to create hyperlinks in HTML.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;it allows users to click and go to another page ,website,section,or file.&lt;br&gt;
&lt;/p&gt;&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;a href="url"&amp;gt;link Text&amp;lt;/a&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Vijay sir share some Shortcuts:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;shift+1 - Boiler plate of HTML&lt;/li&gt;
&lt;li&gt;ctrl+shift+i - code allignment&lt;/li&gt;
&lt;li&gt;ctrl+ / - Command line.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Tomorrow Discussion is :&lt;strong&gt;Ajail Methodology&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;And Apart from the class &lt;strong&gt;Muthu sir&lt;/strong&gt; share some Interesting website &lt;strong&gt;KANIYAM.COM&lt;/strong&gt; . then Give some Day plans, very interesting speech.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Today Tasks&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;5 Blocks.&lt;/li&gt;
&lt;li&gt;5 Inline.&lt;/li&gt;
&lt;li&gt;Scrum Master Techniques.&lt;/li&gt;
&lt;li&gt;Post the Blogs.&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>java</category>
    </item>
  </channel>
</rss>
