<?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: Raksha</title>
    <description>The latest articles on DEV Community by Raksha (@raksha_murugesan).</description>
    <link>https://dev.to/raksha_murugesan</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%2F4010289%2F42c16ba7-932a-41e3-84d5-03af3853f42b.jpg</url>
      <title>DEV Community: Raksha</title>
      <link>https://dev.to/raksha_murugesan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/raksha_murugesan"/>
    <language>en</language>
    <item>
      <title>Day-2 of Learning HTML</title>
      <dc:creator>Raksha</dc:creator>
      <pubDate>Fri, 10 Jul 2026 15:28:14 +0000</pubDate>
      <link>https://dev.to/raksha_murugesan/day-2-of-learning-html-2mj1</link>
      <guid>https://dev.to/raksha_murugesan/day-2-of-learning-html-2mj1</guid>
      <description>&lt;p&gt;Hi Guys, this is my day-2 of learning HTML. Today I learned about the different types of list in HTML.&lt;/p&gt;

&lt;h2&gt;
  
  
  Types of List:
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;        -  Ordered List&lt;br&gt;
        -  Unordered List&lt;br&gt;
        -  Description List&lt;br&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  Ordered List:&lt;br&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;1. Ordered list is used when we want the items to be listed in the sequential order.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;ol&amp;gt;&lt;/code&gt; tag refers to the &lt;strong&gt;Ordered List&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;2. Here, we can order the items in &lt;strong&gt;Numbers, Alphabets and Roman Numerals&lt;/strong&gt; using &lt;strong&gt;type&lt;/strong&gt; attribute.&lt;/li&gt;
&lt;li&gt;3. We can also reverse the order of the List using &lt;strong&gt;reversed&lt;/strong&gt; attribute.&lt;/li&gt;
&lt;li&gt;4. We can also specify the starting of the List using &lt;strong&gt;start&lt;/strong&gt; attribute.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt;&lt;/p&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7res2u9xxmttlequg0ot.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7res2u9xxmttlequg0ot.png" alt=" " width="799" height="230"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Unordered List:
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;1. Unordered list is used when we don't want the items to be displayed in specific order.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;ul&amp;gt;&lt;/code&gt; tag refers to the &lt;strong&gt;Unordered List&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;2. By default , the items are displayed in &lt;strong&gt;disc&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;3. We can change the style using &lt;strong&gt;type&lt;/strong&gt; attribute.&lt;/li&gt;
&lt;li&gt;4. The other available styles are square, and circle.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt;&lt;/p&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fod68jjycc8v7ib3eyydq.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fod68jjycc8v7ib3eyydq.png" alt=" " width="800" height="214"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Description List:
&lt;/h2&gt;

&lt;p&gt;Description List is used to display the descriptive term along with the definitions.&lt;br&gt;
&lt;code&gt;&amp;lt;dl&amp;gt;&lt;/code&gt; tag refers to the &lt;strong&gt;Description List&lt;/strong&gt;.&lt;br&gt;
&lt;code&gt;&amp;lt;dt&amp;gt;&lt;/code&gt; tag refers to the &lt;strong&gt;Description term&lt;/strong&gt;.&lt;br&gt;
&lt;code&gt;&amp;lt;dd&amp;gt;&lt;/code&gt; tag refers to the &lt;strong&gt;Description Definitions&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example:&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkx84sw8f3cq7d4fjblb0.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkx84sw8f3cq7d4fjblb0.png" alt=" " width="646" height="416"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Bye Guys...&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>frontend</category>
      <category>html</category>
      <category>beginners</category>
    </item>
    <item>
      <title>GitLab</title>
      <dc:creator>Raksha</dc:creator>
      <pubDate>Thu, 09 Jul 2026 12:53:20 +0000</pubDate>
      <link>https://dev.to/raksha_murugesan/gitlab-5497</link>
      <guid>https://dev.to/raksha_murugesan/gitlab-5497</guid>
      <description>&lt;p&gt;Hi guys,Today I learned something new which is GitLab. Learned &lt;strong&gt;how to create a new git lab account, how to use that and some terminal commands to use git lab&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How to create a new gitlab account?
&lt;/h2&gt;

&lt;p&gt;Go to this website &lt;a href="https://about.gitlab.com/" rel="noopener noreferrer"&gt;https://about.gitlab.com/&lt;/a&gt; here you can fill the details by manually or simply you can use continue with google. You have another options also, if you already have a github account you can use that also to sign in to GitLab.&lt;/p&gt;

&lt;p&gt;To use GitLab on your pc. You have to download git, otherwise the git commands won't work in the terminal.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to use that?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Using gitlab you can create a fresh project from scratch or you can also import your existing project and work with them.&lt;/li&gt;
&lt;li&gt;In GitLab, Multiple users can work on same project.&lt;/li&gt;
&lt;li&gt;It also used when we want to track our changes and go back to the old state.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Terminal Commands:
&lt;/h2&gt;

&lt;p&gt;Today, i learned these basic commands&lt;/p&gt;

&lt;p&gt;1.cd--&amp;gt; Change Directory (using this we can move to any folder)&lt;/p&gt;

&lt;p&gt;2.ls--&amp;gt;List files (Which is used to list the files which are present in the particular folder)&lt;/p&gt;

&lt;p&gt;3.mkdir--&amp;gt;Make directory (It is used to used a Directory / folder)&lt;/p&gt;

&lt;p&gt;4.git --version--&amp;gt;This command is used to check the version of the git.&lt;/p&gt;

&lt;p&gt;5.git init--&amp;gt; Used to create a new repository.&lt;/p&gt;

&lt;p&gt;6.git add--&amp;gt;This is used to add the single file to our repository.&lt;/p&gt;

&lt;p&gt;7.git add .--&amp;gt;This is used to add multiple files at a time to our repository.&lt;/p&gt;

&lt;p&gt;8.git commit -m "commit message" --&amp;gt;Used to commit the changes with commit message, this commit message useful when someone checks for what you changed.&lt;/p&gt;

&lt;p&gt;9.git clone--&amp;gt; It is used to clone a existing repository.&lt;/p&gt;

&lt;p&gt;10.git push--&amp;gt; Used to push our updated code.&lt;/p&gt;

&lt;p&gt;Bye Guyss..&lt;/p&gt;

&lt;h1&gt;
  
  
  devloper #learning #consistency #practice
&lt;/h1&gt;

</description>
      <category>git</category>
      <category>webdev</category>
      <category>development</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Day 1 of Learning HTML</title>
      <dc:creator>Raksha</dc:creator>
      <pubDate>Thu, 09 Jul 2026 05:34:35 +0000</pubDate>
      <link>https://dev.to/raksha_murugesan/day-1-of-learning-html-25hp</link>
      <guid>https://dev.to/raksha_murugesan/day-1-of-learning-html-25hp</guid>
      <description>&lt;p&gt;Hi Guys, this is my day 1 of learning HTML from scratch. Today i learned some basic things in HTML like *&lt;em&gt;What is HTML? ,Structure of HTML , Heading tags in HTML. *&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What is HTML?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;HTML stands for Hypertext Markup Language.&lt;/li&gt;
&lt;li&gt;HTML is used to create the web pages.&lt;/li&gt;
&lt;li&gt;HTML is gives the structure to the webpage.&lt;/li&gt;
&lt;li&gt;We can also call the HTML as Skeleton of our webpage.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Structure of HTML:
&lt;/h2&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdo5xes7a580w3zem1lvs.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdo5xes7a580w3zem1lvs.png" alt=" " width="800" height="490"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;DOCTYPE html&amp;gt;&lt;/code&gt;: This DOCTYPE html is always written in the first line of the HTML Document. It is used to tell the browser that, it is a HTML document.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;2.&lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt;: This &lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; is the root element in the HTML page. Every other tags are present inside this &lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; tag only.&lt;/p&gt;

&lt;p&gt;3.&lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt;: The  tag contains the all the meta information about the webpage and the some tags like &lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;style&amp;gt;&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;4.&lt;code&gt;&amp;lt;meta charset="UTF-8"&amp;gt;&lt;/code&gt;: It tells the browser to use UTF-8 encoding. The UTF-8 supports all the languages, symbols and used to display the content properly.&lt;/p&gt;

&lt;p&gt;5.&lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt;: This &lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt; is used to used to display the title for the webpage on the browser.&lt;/p&gt;

&lt;p&gt;6.&lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt;: The &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; tag contains all the visible content in the webpage. Whatever the things which are visible in the webpage are written inside this &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; tag.&lt;/p&gt;

&lt;h2&gt;
  
  
  Heading Tags in HTML:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;The size of the heading tag is starts from h1 to h6.&lt;/li&gt;
&lt;li&gt;h1 is the highest level heading, it is displayed in larger size in the browser. it is used for heading or title of the webpage.&lt;/li&gt;
&lt;li&gt;h6 is the least level heading , it is displayed in smaller size in the browser.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5r6cpe26dxh98rpayx7b.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5r6cpe26dxh98rpayx7b.png" alt=" " width="800" height="425"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Bye guys..&lt;br&gt;
Stay tuned for Day 2!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>productivity</category>
      <category>vscode</category>
    </item>
  </channel>
</rss>
