<?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: Raj</title>
    <description>The latest articles on DEV Community by Raj (@rajasekar1998).</description>
    <link>https://dev.to/rajasekar1998</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%2F4022101%2Fb0a65021-21e6-44d1-b6e6-e21d94e1d37a.jpg</url>
      <title>DEV Community: Raj</title>
      <link>https://dev.to/rajasekar1998</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rajasekar1998"/>
    <language>en</language>
    <item>
      <title>Css Flex</title>
      <dc:creator>Raj</dc:creator>
      <pubDate>Mon, 20 Jul 2026 15:26:19 +0000</pubDate>
      <link>https://dev.to/rajasekar1998/css-flex-27hg</link>
      <guid>https://dev.to/rajasekar1998/css-flex-27hg</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is Flex in CSS?&lt;/strong&gt;&lt;br&gt;
Flex (Flexbox) is a CSS layout system that makes it easy to arrange items in a row or column. It allows you to align, size, and distribute space between items inside a container.Flexbox helps create responsive and flexible web layouts with less code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How does Flex work?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Flex works with two parts:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Flex Container – The parent element.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Flex Items – The child elements inside the parent.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;First make the parent a flex container:&lt;/p&gt;

&lt;p&gt;.container {&lt;br&gt;
    display: flex;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Box 1
Box 2
Box 3
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;.container {&lt;br&gt;
    display: flex;&lt;br&gt;
}&lt;/p&gt;

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

&lt;p&gt;Box 1   Box 2   Box 3&lt;/p&gt;

&lt;p&gt;The boxes appear in one row because of display: flex.&lt;br&gt;
**&lt;br&gt;
Common Flex properties**&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;display: flex; – Enables Makes the container a flex container.&lt;/li&gt;
&lt;li&gt;flex-direction – Sets the direction (row or column).&lt;/li&gt;
&lt;li&gt;justify-content – Aligns items horizontally.&lt;/li&gt;
&lt;li&gt;align-items – Aligns items vertically.&lt;/li&gt;
&lt;li&gt;flex-wrap – Allows items to move to the next line if needed.&lt;/li&gt;
&lt;li&gt;gap – Adds space between items.&lt;/li&gt;
&lt;li&gt;Size (flex-grow, flex-shrink, flex-basis)&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;Think of Flexbox as a teacher.&lt;br&gt;
The container is like the teacher giving instructions.&lt;br&gt;
The items are like students following those instructions.&lt;/p&gt;

&lt;p&gt;The teacher can tell students to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stand in a row.&lt;/li&gt;
&lt;li&gt;Stand in a column.&lt;/li&gt;
&lt;li&gt;Leave equal space.&lt;/li&gt;
&lt;li&gt;Stand in the center.&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Properties &amp; Non-Standard Property</title>
      <dc:creator>Raj</dc:creator>
      <pubDate>Sun, 19 Jul 2026 15:31:44 +0000</pubDate>
      <link>https://dev.to/rajasekar1998/properties-non-standard-property-3545</link>
      <guid>https://dev.to/rajasekar1998/properties-non-standard-property-3545</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is a CSS property?&lt;/strong&gt;&lt;br&gt;
A CSS property is a keyword used to control the appearance and layout of an HTML element. It tells the browser what style to apply, such as color, size, spacing, border, or position.&lt;/p&gt;

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

&lt;p&gt;h1 {&lt;br&gt;
    color: blue;&lt;br&gt;
    font-size: 30px;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How many CSS properties are there?&lt;/strong&gt;&lt;br&gt;
There is no fixed number. CSS has more than 500 standard properties, and new properties continue to be introduced in newer CSS specifications.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Common CSS properties&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;background&lt;/li&gt;
&lt;li&gt;background-color&lt;/li&gt;
&lt;li&gt;font-size&lt;/li&gt;
&lt;li&gt;font-family&lt;/li&gt;
&lt;li&gt;font-weight&lt;/li&gt;
&lt;li&gt;text-align&lt;/li&gt;
&lt;li&gt;width&lt;/li&gt;
&lt;li&gt;height&lt;/li&gt;
&lt;li&gt;margin&lt;/li&gt;
&lt;li&gt;padding&lt;/li&gt;
&lt;li&gt;border&lt;/li&gt;
&lt;li&gt;border-radius&lt;/li&gt;
&lt;li&gt;display&lt;/li&gt;
&lt;li&gt;position&lt;/li&gt;
&lt;li&gt;top&lt;/li&gt;
&lt;li&gt;left&lt;/li&gt;
&lt;li&gt;right&lt;/li&gt;
&lt;li&gt;bottom&lt;/li&gt;
&lt;li&gt;flex&lt;/li&gt;
&lt;li&gt;grid&lt;/li&gt;
&lt;li&gt;justify-content&lt;/li&gt;
&lt;li&gt;align-items&lt;/li&gt;
&lt;li&gt;overflow&lt;/li&gt;
&lt;li&gt;opacity&lt;/li&gt;
&lt;li&gt;z-index&lt;/li&gt;
&lt;li&gt;box-shadow&lt;/li&gt;
&lt;li&gt;cursor&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What does non-standard property mean?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A non-standard property is a property that is not part of the official CSS specification (W3C standard). It is usually created by a browser company for its own browser so it may not work in every browser.&lt;/p&gt;

&lt;p&gt;(or)&lt;/p&gt;

&lt;p&gt;Non-standard properties are browser-specific CSS properties. They are not official CSS properties so they may work in some browsers but not in others.&lt;/p&gt;

&lt;p&gt;Example&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;webkit-user-select: none;&lt;/li&gt;
&lt;li&gt;webkit- → Chrome, Safari&lt;/li&gt;
&lt;li&gt;moz- → Firefox&lt;/li&gt;
&lt;li&gt;ms- → Microsoft Edge (older versions)&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Html Attribute</title>
      <dc:creator>Raj</dc:creator>
      <pubDate>Sat, 18 Jul 2026 12:12:00 +0000</pubDate>
      <link>https://dev.to/rajasekar1998/html-attribute-5468</link>
      <guid>https://dev.to/rajasekar1998/html-attribute-5468</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is an HTML Attribute?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;An HTML attribute provides additional information about an HTML element. It is always written inside the opening tag.&lt;/p&gt;

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

&lt;p&gt;&lt;a href="https://www.google.com" rel="noopener noreferrer"&gt;Google&lt;/a&gt;&lt;br&gt;
href  Attribute name&lt;/p&gt;



&lt;p&gt;&lt;a href="https://www.google.com" rel="noopener noreferrer"&gt;https://www.google.com&lt;/a&gt; → Attribute value&lt;/p&gt;

&lt;p&gt;The HTML standard has 100+ attributes, and browsers continue to support additional global, element-specific, and newer attributes as HTML evolves.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;they are called common HTML attributes?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;id&lt;/li&gt;
&lt;li&gt;class&lt;/li&gt;
&lt;li&gt;href&lt;/li&gt;
&lt;li&gt;src&lt;/li&gt;
&lt;li&gt;alt&lt;/li&gt;
&lt;li&gt;title&lt;/li&gt;
&lt;li&gt;style&lt;/li&gt;
&lt;li&gt;type&lt;/li&gt;
&lt;li&gt;value&lt;/li&gt;
&lt;li&gt;placeholder&lt;/li&gt;
&lt;li&gt;name&lt;/li&gt;
&lt;li&gt;disabled&lt;/li&gt;
&lt;li&gt;required&lt;/li&gt;
&lt;li&gt;checked &lt;/li&gt;
&lt;li&gt;readonly&lt;/li&gt;
&lt;li&gt;maxlength&lt;/li&gt;
&lt;li&gt;pattern&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Common HTML Attributes&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%2F4ltvod23xnbt0eirqgjt.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%2F4ltvod23xnbt0eirqgjt.png" alt=" " width="800" height="653"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Types of Attributes&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Global Attributes&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;id&lt;/li&gt;
&lt;li&gt;class&lt;/li&gt;
&lt;li&gt;style&lt;/li&gt;
&lt;li&gt;title&lt;/li&gt;
&lt;li&gt;hidden&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Element-Specific Attributes&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;href (for &lt;a&gt;)&lt;/a&gt;
&lt;/li&gt;
&lt;a&gt;
&lt;li&gt;src (for &lt;img&gt;)&lt;/li&gt;
&lt;li&gt;alt (for &lt;img&gt;)&lt;/li&gt;
&lt;li&gt;type (for )&lt;/li&gt;
&lt;li&gt;value&lt;/li&gt;
&lt;/a&gt;
&lt;/ul&gt;
&lt;a&gt;

&lt;ol&gt;
&lt;li&gt;Boolean Attributes&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;required&lt;/li&gt;
&lt;li&gt;checked&lt;/li&gt;
&lt;li&gt;disabled&lt;/li&gt;
&lt;li&gt;readonly&lt;/li&gt;
&lt;li&gt;autofocus&lt;/li&gt;
&lt;/ul&gt;

&lt;/a&gt;

</description>
    </item>
    <item>
      <title>Form tag in HTML</title>
      <dc:creator>Raj</dc:creator>
      <pubDate>Thu, 16 Jul 2026 05:46:43 +0000</pubDate>
      <link>https://dev.to/rajasekar1998/form-tag-in-html-m5i</link>
      <guid>https://dev.to/rajasekar1998/form-tag-in-html-m5i</guid>
      <description>&lt;p&gt;Collecting user input on web pages &lt;br&gt;
widely used over 85 of websites rely on  ms to gather user data.&lt;br&gt;
They play a crucial role in modern web development by enabling user interaction and data submisson.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1.Basic Search Form ( GET Method )&lt;/strong&gt;&lt;br&gt;
this simple form uses the GET method which appends the submitted form data directly to the URL It is perfect for search bars&lt;/p&gt;

&lt;p&gt;(E.g)   when you search the google . The  browser URL becomes something link.&lt;br&gt;
            Everyone can see what you searched because it appears in the URL.&lt;br&gt;
Use GET for:&lt;br&gt;
Search boxes&lt;br&gt;
filters&lt;br&gt;
public information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.Standard Login  Form (POST Method)  &lt;/strong&gt;&lt;/p&gt;
&lt;br&gt;
For Sensitive data link passwords use the POST method .This sends the form  data hidden inside the HTTP request body instead of the URL

&lt;p&gt;(E.g)  When you enter your atm pin your pin is not shown publicly.it is sent securely to the bank&lt;br&gt;
            Login Passwords Registration Payments&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.Comprechensive Registration Form&lt;/strong&gt;&lt;br&gt;
this advanced example showcases  diverse form controls , including dropdown list (  ) ,multi-line text boxes () checkboxes, and radio buttons.&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;(E.g)  &amp;lt;select&amp;gt;  Thinking a  restaurant  menu card you choose one option &amp;lt;br&amp;gt;
       veg    chicken    fish   &amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;(E.g)  &amp;lt;textarea&amp;gt;   restaurant food feedback &amp;lt;br&amp;gt;
         plesaes share a feedback bescuse imporvatRadio Buttons&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;The &amp;lt;input type=”radio”&amp;gt; defines a radion button.&amp;lt;br&amp;gt;
Radion buttons let a user select one of a limited number of choices.&amp;lt;br&amp;gt;
p&amp;gt;Choose your favorite friend name :&amp;lt;/p&amp;gt;&amp;lt;/p&amp;gt;

&amp;lt;form&amp;gt;
  &amp;lt;input type="radio" id="html" name="fav_language" value="msd"&amp;gt;
  &amp;lt;label for="html"&amp;gt;HTML&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
  &amp;lt;input type="radio" id="css" name="fav_language" value="vk"&amp;gt;
  &amp;lt;label for="css"&amp;gt;CSS&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
  &amp;lt;input type="radio" id="javascript" name="fav_language" value="Jk"&amp;gt;
  &amp;lt;label for="javascript"&amp;gt;JavaScript&amp;lt;/label&amp;gt;
&amp;lt;/form&amp;gt;

&amp;lt;p&amp;gt;This is how the HTML code above will be displayed in a browser:&amp;lt;br&amp;gt;
choose your favorite palyer :&amp;lt;br&amp;gt;
msd&amp;lt;br&amp;gt;
vk&amp;lt;br&amp;gt;
jk.&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;4.checkboxes&amp;lt;/strong&amp;gt;&amp;lt;br&amp;gt;
the &amp;lt;input type=”checkbox”&amp;gt; &amp;lt;br&amp;gt;
checkboxes let a user select ZERO or MORE options of a limited number of choices&amp;lt;/p&amp;gt;

&amp;lt;form&amp;gt;
  &amp;lt;input type="checkbox" id="vehicle1" name="vehicle1" value="Bike"&amp;gt;
  &amp;lt;label for="vehicle1"&amp;gt; I have a bike&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
  &amp;lt;input type="checkbox" id="vehicle2" name="vehicle2" value="Car"&amp;gt;
  &amp;lt;label for="vehicle2"&amp;gt; I have a car&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
  &amp;lt;input type="checkbox" id="vehicle3" name="vehicle3" value="Boat"&amp;gt;
  &amp;lt;label for="vehicle3"&amp;gt; I have a boat&amp;lt;/label&amp;gt;
&amp;lt;/form&amp;gt;

&amp;lt;p&amp;gt;this is how the HTML code above will be displayed in a browser:&amp;lt;br&amp;gt;
i have a bike &amp;lt;br&amp;gt;
i have a  car&amp;lt;br&amp;gt;
i have a  phone.&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;5.The Submit Button&amp;lt;/strong&amp;gt;&amp;lt;br&amp;gt;
the &amp;lt;input type=”submit”&amp;gt; submitting the form data to a form-handler&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;the form-handler is typically a file on the server with a script for processing input data.&amp;lt;br&amp;gt;
the form-handler is specified in the form’s action attribute.&amp;lt;/p&amp;gt;

&amp;lt;form action="/action_page.php"&amp;gt;
  &amp;lt;label for="fname"&amp;gt;First name:&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
  &amp;lt;input type="text" id="fname" name="fname" value="John"&amp;gt;&amp;lt;br&amp;gt;
  &amp;lt;label for="lname"&amp;gt;Last name:&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
  &amp;lt;input type="text" id="lname" name="lname" value="Doe"&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;
  &amp;lt;input type="submit" value="Submit"&amp;gt;
&amp;lt;/form&amp;gt;

&amp;lt;p&amp;gt;This is how the html code adove will be displayed in a browser:&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;first name &amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;last name&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;submit.&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;6.he Name Attribute for &amp;lt;input&amp;gt;&amp;lt;/strong&amp;gt;&amp;lt;br&amp;gt;
notice that each input field must have a name attribute to be submitted.&amp;lt;br&amp;gt;
If the name attribute is omitted the value of the input field will not be sent at all.&amp;lt;/p&amp;gt;
&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HTTP Basic: Access dented. If a password was provided for Git authentication, the password was incorrect or you're required to use a token instead of a password. If a token was provided, it was either incorrect, expired</title>
      <dc:creator>Raj</dc:creator>
      <pubDate>Sat, 11 Jul 2026 07:34:04 +0000</pubDate>
      <link>https://dev.to/rajasekar1998/http-basic-access-dented-if-a-password-was-provided-for-git-authentication-the-password-was-33jd</link>
      <guid>https://dev.to/rajasekar1998/http-basic-access-dented-if-a-password-was-provided-for-git-authentication-the-password-was-33jd</guid>
      <description>&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://dev.to/rajasekar1998/git-authentication-failed-use-a-personal-access-token-pat-instead-of-your-password-350o" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" 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%2F4qazn1uhms7p3inwiq0j.png" height="auto" class="m-0"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://dev.to/rajasekar1998/git-authentication-failed-use-a-personal-access-token-pat-instead-of-your-password-350o" rel="noopener noreferrer" class="c-link"&gt;
            Git authentication failed. Use a Personal Access Token (PAT) instead of your password. - DEV Community
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            You fix the problem you do this step but you learn more git access key you read more also I give...
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" 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%2F8j7kvp660rqzt99zui8e.png"&gt;
          dev.to
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>Git authentication failed. Use a Personal Access Token (PAT) instead of your password.</title>
      <dc:creator>Raj</dc:creator>
      <pubDate>Sat, 11 Jul 2026 07:25:37 +0000</pubDate>
      <link>https://dev.to/rajasekar1998/git-authentication-failed-use-a-personal-access-token-pat-instead-of-your-password-350o</link>
      <guid>https://dev.to/rajasekar1998/git-authentication-failed-use-a-personal-access-token-pat-instead-of-your-password-350o</guid>
      <description>&lt;p&gt;You fix the problem you do this step but you learn more git access key you read more also I give 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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgrsvdt4zf19oxd9qn99y.jpeg" 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%2Fgrsvdt4zf19oxd9qn99y.jpeg" alt=" " width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;No Need Password only you want Personal Access Token &amp;amp; key&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;em&gt;**What is a Personal Access Token?&lt;/em&gt;**&lt;br&gt;
A Personal Access Token (PAT) is a long secret code generated by GitLab or GitHub. It is used to securely authenticate Git commands like:&lt;/p&gt;

&lt;p&gt;1.git push&lt;br&gt;
2.git pull&lt;br&gt;
3.git clone&lt;/p&gt;

&lt;p&gt;temporary digital key for Git.&lt;br&gt;
&lt;strong&gt;How to create a Personal Access Token in GitLab&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;1. Sign in to your GitLab account.&lt;/em&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%2Fbqraxopa2mhvxl9stocn.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%2Fbqraxopa2mhvxl9stocn.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;2. Click your profile picture.&lt;/em&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%2Fbu3cj51ap0wk7e0ub4vr.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%2Fbu3cj51ap0wk7e0ub4vr.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;3. Then click edit the profile.&lt;/em&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%2Fnmrwd0rb43yxb70hoz6z.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%2Fnmrwd0rb43yxb70hoz6z.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
_&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Then right side see the access -&amp;gt; see 7 option you click personal access tokens._
&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%2F7asddz6d0rfjah5llkau.png" alt=" " width="800" height="450"&gt;
_&lt;/li&gt;
&lt;li&gt;you can see the generate token click -&amp;gt; show the tow option click legacy token._
&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%2Fh2itbd9gv2e8314ooy8a.png" alt=" " width="800" height="450"&gt;
_
6.the enter name description is not compulsory but important only select two option 
✅ read_repository
✅ write_repository 
then click the generate compulsory copy the code because that key don't enter your terminal user password only copy and paste generated key &amp;amp; token._&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;I give example Personal Access Token (PAT)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Imagine you want to enter your office.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Username = Your name (who you are)&lt;/li&gt;
&lt;li&gt;Password = Your house key&lt;/li&gt;
&lt;li&gt;Personal Access Token  = A special office access card&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Your house key opens your house, but it doesn't open the office. Similarly, your GitLab password lets you log in to the website, but Git may require a Personal Access Token instead of your password when you use git push.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HTML .Tag &lt;meta lang="eng"&gt;,&lt;meta charset="UTF-8"&gt;</title>
      <dc:creator>Raj</dc:creator>
      <pubDate>Thu, 09 Jul 2026 05:25:36 +0000</pubDate>
      <link>https://dev.to/rajasekar1998/html-848</link>
      <guid>https://dev.to/rajasekar1998/html-848</guid>
      <description>&lt;p&gt;&lt;strong&gt;&lt;em&gt;welcome to my first blog&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is not an Ordinary blog. it is based on my own understanding and i am still learning . I will explain topics simple words the way i understand  them. I m not to write like an Ai or an expert I share my learning journey so that beginners can understand easily. If i make any mistakes I will learn from them and improve.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;br&gt;
 Why Mention the Language?&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;meta lang="eng"&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;* Browser Understanding the page language. 
* useful translation tools translate a other language correctly.
* improve accessibility for blind users programmers code .
* Screen readers like JAWS and NVDA which convert text to Speech.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt; &lt;br&gt;
    * it's short method used quickly typing.&lt;br&gt;
    * long method available but short method almost using every user.&lt;br&gt;
    *  what is  this called universal character encoding &lt;br&gt;
 (E.g)&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;* HTML File = message (you send the secret code word)
* UTF-8 = reading rule ( friend A not  understands the secret code word mean)
* Reader = Browser ( then you explain a friend what secret code meaning)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;br&gt;
 why using this tag?&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;meta name="viewport" content="width=device-width, initial-scale=1.0"&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;every device a different display screen width.&lt;/li&gt;
&lt;li&gt;this tag tells the browser to match the web page to the device's screen.&lt;/li&gt;
&lt;li&gt;a make your website look good on different display screen.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;(E.g)&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; * imagine opened a website on an old Nokia phone not fit the display screen properly.
 * I had to zoom in and out every time to read the content because the layout was not aligned correctly.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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