<?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: Ezhil Abinaya K</title>
    <description>The latest articles on Forem by Ezhil Abinaya K (@ezhil_abinayak_e38eec8fb).</description>
    <link>https://forem.com/ezhil_abinayak_e38eec8fb</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%2F3937249%2F8c2d2d3d-7576-40b5-b13e-054c9c2a1122.png</url>
      <title>Forem: Ezhil Abinaya K</title>
      <link>https://forem.com/ezhil_abinayak_e38eec8fb</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ezhil_abinayak_e38eec8fb"/>
    <language>en</language>
    <item>
      <title>Git &amp; GitLab Basics</title>
      <dc:creator>Ezhil Abinaya K</dc:creator>
      <pubDate>Mon, 25 May 2026 10:36:04 +0000</pubDate>
      <link>https://forem.com/ezhil_abinayak_e38eec8fb/git-gitlab-basics-kj3</link>
      <guid>https://forem.com/ezhil_abinayak_e38eec8fb/git-gitlab-basics-kj3</guid>
      <description>&lt;p&gt;&lt;strong&gt;Git&lt;/strong&gt;&lt;br&gt;
Git is a Distributed Version Control System (DVCS) used to track changes in source code during software development.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It tracks code history.&lt;/li&gt;
&lt;li&gt;It allows rollback to previous versions.&lt;/li&gt;
&lt;li&gt;It Supports collaboration.&lt;/li&gt;
&lt;li&gt;It Works offline.
&lt;strong&gt;GitLab&lt;/strong&gt;
GitLab is a web-based Git repository management tool.
Features:&lt;/li&gt;
&lt;li&gt;Remote repository hosting.&lt;/li&gt;
&lt;li&gt;CI/CD pipelines.&lt;/li&gt;
&lt;li&gt;Team collaboration.&lt;/li&gt;
&lt;li&gt;Issue tracking.
It is Used to store and manage Git projects remotely.
&lt;strong&gt;Version Control System&lt;/strong&gt;
VCS is a system that records changes made to files over time.
&lt;em&gt;Types of VCS:&lt;/em&gt;
&lt;strong&gt;Local VCS:&lt;/strong&gt;
It Stored in local system only.
Example: manual backups.
&lt;strong&gt;Centralized VCS (CVCS):&lt;/strong&gt;
It has one central server. All users connect to it.
&lt;strong&gt;Distributed VCS (DVCS):&lt;/strong&gt;
Every user has full copy of repository.
Example: Git.
&lt;strong&gt;Branching&lt;/strong&gt;
Branching means creating a separate line of development.&lt;/li&gt;
&lt;li&gt;Develop new features.&lt;/li&gt;
&lt;li&gt;Fix bugs.&lt;/li&gt;
&lt;li&gt;Avoid affecting main code.
&lt;strong&gt;Types of Branches:&lt;/strong&gt;
1.Main/Master Branch: Production-ready code.
2.Feature Branch:Used for new features.
3.Bugfix Branch: Used for fixing bugs.
4.Develop Branch:Integration branch for testing.
&lt;strong&gt;Types of Interfaces&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;CLI (Command Line Interface):Uses terminal commands.
2.GUI (Graphical User Interface):Visual tools with buttons.
&lt;strong&gt;Important Git Commands&lt;/strong&gt;
git status: Shows current state of working directory.
git add:Moves files to staging area.
git commit:Saves snapshot of changes with message.
git push:Sends local commits to remote repository.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git status
git add filename
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"Initial commit"&lt;/span&gt;
git push origin main
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>git</category>
      <category>github</category>
      <category>gitlab</category>
      <category>githubcopilot</category>
    </item>
    <item>
      <title>span tag, vw/vh, %, px</title>
      <dc:creator>Ezhil Abinaya K</dc:creator>
      <pubDate>Mon, 25 May 2026 10:14:18 +0000</pubDate>
      <link>https://forem.com/ezhil_abinayak_e38eec8fb/span-tag-vwvh-px-4ncn</link>
      <guid>https://forem.com/ezhil_abinayak_e38eec8fb/span-tag-vwvh-px-4ncn</guid>
      <description>&lt;p&gt;Span Tag&lt;br&gt;
The span tag is used to style a small part of text without breaking line. It is an inline element.&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;span&amp;gt;&lt;/span&gt;text&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;I am learning &lt;span class="nt"&gt;&amp;lt;span&lt;/span&gt; &lt;span class="na"&gt;style=&lt;/span&gt;&lt;span class="s"&gt;"color:red;"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;HTML&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt; today.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Only "HTML" becomes red color.&lt;br&gt;
&lt;strong&gt;px, %, vw, vh (CSS Units)&lt;/strong&gt;&lt;br&gt;
These are used to set size, width, height, spacing.&lt;br&gt;
&lt;strong&gt;px (Pixel):&lt;/strong&gt;&lt;br&gt;
Fixed size unit.&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;div&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;200px&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;200px = fixed size.&lt;br&gt;
Does NOT change for screen size.&lt;br&gt;
&lt;strong&gt;% (Percentage):&lt;/strong&gt;&lt;br&gt;
Relative to parent element.&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;div&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;50%&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;Takes 50% of parent width.&lt;br&gt;
&lt;strong&gt;vw (Viewport Width):&lt;/strong&gt;&lt;br&gt;
Relative to screen 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;div&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;50vw&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;1vw = 1% of screen width.&lt;br&gt;
50vw = half of screen width.&lt;br&gt;
&lt;strong&gt;vh (Viewport Height):&lt;/strong&gt;&lt;br&gt;
Relative to screen 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;div&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;height&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;100vh&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;100vh = full screen height.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>css</category>
      <category>html</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Input Types, Attributes, Self-Closing Tags, Hover Effect</title>
      <dc:creator>Ezhil Abinaya K</dc:creator>
      <pubDate>Mon, 25 May 2026 09:51:51 +0000</pubDate>
      <link>https://forem.com/ezhil_abinayak_e38eec8fb/input-types-attributes-self-closing-tags-hover-effect-50pc</link>
      <guid>https://forem.com/ezhil_abinayak_e38eec8fb/input-types-attributes-self-closing-tags-hover-effect-50pc</guid>
      <description>&lt;p&gt;&lt;strong&gt;Input Types in HTML&lt;/strong&gt;&lt;br&gt;
HTML input types define what kind of data a user can enter in a form.&lt;br&gt;
Common Input Types:&lt;br&gt;
Text, Password, Email, Number, date, Time, Checkbox, File, Submit, Color, Range&lt;br&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%2Fc6vcrrfi9b5bykdgg0hu.png" 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%2Fc6vcrrfi9b5bykdgg0hu.png" alt=" " width="578" height="55"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Input Attributes&lt;/strong&gt;&lt;br&gt;
Attributes give extra features to input elements.&lt;br&gt;
Example:&lt;br&gt;
placeholder → Hint text inside input&lt;br&gt;
required → Makes field mandatory&lt;br&gt;
readonly → Cannot edit&lt;br&gt;
disabled → Cannot use field&lt;br&gt;
value → Default value&lt;br&gt;
maxlength → Limit characters&lt;br&gt;
min, max → Number limits&lt;br&gt;
&lt;strong&gt;Self Closing (Standalone) Tags&lt;/strong&gt;&lt;br&gt;
These tags do NOT need closing tags.&lt;br&gt;
&lt;code&gt;Examples&lt;br&gt;
&amp;lt;br&amp;gt;&lt;br&gt;
&amp;lt;hr&amp;gt;&lt;br&gt;
&amp;lt;img&amp;gt;&lt;br&gt;
&amp;lt;input&amp;gt;&lt;br&gt;
&amp;lt;link&amp;gt;&lt;br&gt;
&amp;lt;meta&amp;gt;&lt;/code&gt;&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;img&lt;/span&gt; &lt;span class="na"&gt;src =&lt;/span&gt;&lt;span class="s"&gt;"image.jpg"&lt;/span&gt;&lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"sample image"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Alt tag&lt;/strong&gt;&lt;br&gt;
The alt attribute is used inside the img to describe the image.alt means alternative text. If the imagedoes not load, this text will be shown instead.&lt;br&gt;
&lt;strong&gt;Hover&lt;/strong&gt;&lt;br&gt;
Hover means when you move mouse over an element, style changes.&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;button&lt;/span&gt;&lt;span class="nd"&gt;:hover&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;background-color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;blue&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;white&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;Hover is used in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Buttons&lt;/li&gt;
&lt;li&gt;Navigation menus&lt;/li&gt;
&lt;li&gt;Links&lt;/li&gt;
&lt;li&gt;Cards&lt;/li&gt;
&lt;li&gt;Images&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>html</category>
      <category>input</category>
      <category>selfclosing</category>
    </item>
    <item>
      <title>Exploring HTML Tables in Web Development</title>
      <dc:creator>Ezhil Abinaya K</dc:creator>
      <pubDate>Mon, 25 May 2026 08:22:19 +0000</pubDate>
      <link>https://forem.com/ezhil_abinayak_e38eec8fb/exploring-html-tables-in-web-development-35m7</link>
      <guid>https://forem.com/ezhil_abinayak_e38eec8fb/exploring-html-tables-in-web-development-35m7</guid>
      <description>&lt;p&gt;&lt;strong&gt;HTML Tables&lt;/strong&gt;&lt;br&gt;
HTML tables are used to organize data into rows and columns in a structured format. They are commonly used for displaying information like student details, marks, schedules, and reports.&lt;br&gt;
&lt;strong&gt;Common Table Tags&lt;/strong&gt;&lt;br&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%2F68me5q7gggf83j7rw0mx.png" 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%2F68me5q7gggf83j7rw0mx.png" alt=" " width="314" height="343"&gt;&lt;/a&gt;&lt;br&gt;
HTML tables help display data clearly and make webpage content more organized and easy to understand.Learning HTML table tags helped me understand how structured data is displayed in webpages while improving my frontend development skills step by step&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Flexbox, Grid &amp; Semantic Tags</title>
      <dc:creator>Ezhil Abinaya K</dc:creator>
      <pubDate>Mon, 25 May 2026 08:04:28 +0000</pubDate>
      <link>https://forem.com/ezhil_abinayak_e38eec8fb/flexbox-grid-semantic-tags-3fa6</link>
      <guid>https://forem.com/ezhil_abinayak_e38eec8fb/flexbox-grid-semantic-tags-3fa6</guid>
      <description>&lt;p&gt;&lt;strong&gt;div tag&lt;/strong&gt;&lt;br&gt;
The div tag is a block-level element used to group and organize content in HTML. It is used when we want to create sections or structure a webpage. It helps developers design layouts and apply CSS styles easily. The content inside the div tag can be styled using CSS.&lt;br&gt;
&lt;strong&gt;Semantic Tags&lt;/strong&gt;&lt;br&gt;
Semantic tags describe the meaning of the content clearly. It improves readability. Gives better SEO. It helps screen readers understand the webpage.&lt;br&gt;
Example&lt;br&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%2Fox0515oaoqlb5ufxlkn5.png" 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%2Fox0515oaoqlb5ufxlkn5.png" alt=" " width="431" height="411"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;display: grid&lt;/strong&gt;&lt;br&gt;
Grid is a CSS layout system used to arrange elements in rows and columns.&lt;br&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%2Fvckjfmc2ww2taj9egh78.png" 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%2Fvckjfmc2ww2taj9egh78.png" alt=" " width="603" height="236"&gt;&lt;/a&gt;&lt;br&gt;
It divides the container into 2 columns using fractions. So the second column becomes twice as wide as the first.&lt;br&gt;
&lt;strong&gt;Flexbox&lt;/strong&gt;&lt;br&gt;
Flexbox is a CSS layout model used for flexible alignment and spacing. It helps align items easily and makes responsive design simpler.&lt;br&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%2Fbzh1te3bi7ohpie3xaz1.png" 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%2Fbzh1te3bi7ohpie3xaz1.png" alt=" " width="400" height="171"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>flexbox</category>
      <category>cssgrid</category>
      <category>semantic</category>
    </item>
    <item>
      <title>Understanding Basic HTML &amp; CSS Concepts for Beginners</title>
      <dc:creator>Ezhil Abinaya K</dc:creator>
      <pubDate>Mon, 25 May 2026 07:42:47 +0000</pubDate>
      <link>https://forem.com/ezhil_abinayak_e38eec8fb/understanding-basic-html-css-concepts-for-beginners-48db</link>
      <guid>https://forem.com/ezhil_abinayak_e38eec8fb/understanding-basic-html-css-concepts-for-beginners-48db</guid>
      <description>&lt;p&gt;While learning Full Stack Web Development, I explored some important HTML and CSS concepts that help in building clean and responsive websites.&lt;br&gt;
&lt;strong&gt;Global Selector (*)&lt;/strong&gt;&lt;br&gt;
The global selector is used to apply styles to all elements in a webpage.&lt;br&gt;
&lt;em&gt;{&lt;br&gt;
  margin: 0;&lt;br&gt;
  padding: 0;&lt;br&gt;
  box-sizing: border-box;&lt;br&gt;
}&lt;br&gt;
It helps maintain consistent spacing and layout throughout the website.&lt;br&gt;
**Anchor Tag &lt;a&gt;&lt;/a&gt;&lt;/em&gt;*&lt;br&gt;
The anchor tag is used to create links in HTML.&lt;br&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%2F8yndgugibz4dcxp1ncdk.png" 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%2F8yndgugibz4dcxp1ncdk.png" alt=" " width="314" height="103"&gt;&lt;/a&gt;&lt;br&gt;
href stands for Hypertext Reference.&lt;br&gt;
&lt;strong&gt;Margin vs Padding&lt;/strong&gt;&lt;br&gt;
Both are used for spacing, but they work differently.&lt;br&gt;
&lt;em&gt;Margin&lt;/em&gt;: Space outside the element.&lt;br&gt;
&lt;em&gt;Padding&lt;/em&gt;: Space inside the element.&lt;br&gt;
&lt;strong&gt;Box Sizing: Border Box&lt;/strong&gt;&lt;br&gt;
box-sizing: border-box makes width and height include padding and border.This helps avoid layout issues and makes responsive design easier.&lt;br&gt;
&lt;strong&gt;Types of Elements&lt;/strong&gt;&lt;br&gt;
1.Block Level Element:Block elements take the full width available and always start on a new line.&lt;br&gt;
Example:&lt;br&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%2Ftykmz4mqxyl4d8d3tcu1.png" 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%2Ftykmz4mqxyl4d8d3tcu1.png" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;br&gt;
2.Inline Element: Inline elements take only the required width and stay in the same line.&lt;br&gt;
Example:&lt;br&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%2Fz2gxiilqxyr13z4tqgqy.png" 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%2Fz2gxiilqxyr13z4tqgqy.png" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;nav tag&lt;/strong&gt;&lt;br&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%2Fc3zp4ldske4xhsz3wzvc.png" 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%2Fc3zp4ldske4xhsz3wzvc.png" alt=" " width="800" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Types of Lists&lt;/strong&gt;&lt;br&gt;
1.Ordered List: An ordered list displays items in a numbered format.&lt;br&gt;
2.Unordered List: An unordered list displays items using bullet points.&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>frontend</category>
    </item>
    <item>
      <title>HTML Basics for Beginners – Markup Language, Elements and Types of CSS</title>
      <dc:creator>Ezhil Abinaya K</dc:creator>
      <pubDate>Fri, 22 May 2026 15:25:38 +0000</pubDate>
      <link>https://forem.com/ezhil_abinayak_e38eec8fb/html-basics-for-beginners-markup-language-elements-and-types-of-css-6pd</link>
      <guid>https://forem.com/ezhil_abinayak_e38eec8fb/html-basics-for-beginners-markup-language-elements-and-types-of-css-6pd</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;br&gt;
In this blog, I will share some basic HTML and CSS concepts that every beginner should know. These are important interview questions for frontend development.&lt;br&gt;
&lt;strong&gt;What is Markup Language?&lt;/strong&gt;&lt;br&gt;
Markup language is used to describe the structure of content using tags and symbols.&lt;br&gt;
Example:&lt;br&gt;
HTML is a markup language used to create web pages.&lt;br&gt;
Tags like &lt;/p&gt;
&lt;h1&gt;, &lt;/h1&gt;
&lt;p&gt;, and &lt;/p&gt; help the browser understand how to display content.&lt;br&gt;
&lt;strong&gt;What is an HTML Element?&lt;/strong&gt;&lt;br&gt;
An HTML element contains:&lt;br&gt;
• Opening tag&lt;br&gt;
• Content&lt;br&gt;
• Closing tag&lt;br&gt;
Example:

&lt;p&gt;Hello&lt;/p&gt;

&lt;p&gt;This complete structure is called an HTML element.&lt;br&gt;
&lt;strong&gt;Difference Between Tag and Element&lt;/strong&gt;&lt;br&gt;
Tag:&lt;br&gt;
• Only the keyword inside angle brackets&lt;br&gt;
Example:&lt;/p&gt;

&lt;p&gt; or &lt;/p&gt;

&lt;p&gt;Element:&lt;br&gt;
• Complete structure including opening tag, content, and closing tag&lt;br&gt;
Example:&lt;/p&gt;

&lt;p&gt;Hello&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Types of CSS&lt;/strong&gt;&lt;br&gt;
There are 3 types of CSS:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Inline CSS
CSS is written inside the HTML element using the style attribute.
Example:
&lt;p&gt;Hello&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Internal CSS
CSS is written inside the  tag in the HTML file.&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;External CSS
CSS is written in a separate .css file and linked using the &amp;lt;link&amp;gt; tag.
&amp;lt;strong&amp;gt;Conclusion&amp;lt;/strong&amp;gt;
These are some important beginner concepts in HTML and CSS. Understanding these basics helps in building web pages and preparing for frontend interviews.&amp;lt;/li&amp;gt;
&amp;lt;/ol&amp;gt;

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

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