<?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: Susan J</title>
    <description>The latest articles on DEV Community by Susan J (@susan_mary2004).</description>
    <link>https://dev.to/susan_mary2004</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%2F3334810%2Fcfc1215d-4361-4e98-be0b-49386c1d1b9a.png</url>
      <title>DEV Community: Susan J</title>
      <link>https://dev.to/susan_mary2004</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/susan_mary2004"/>
    <language>en</language>
    <item>
      <title>JAVA FULL STACK DEVELOPMENT: "JAVA SCRIPT"</title>
      <dc:creator>Susan J</dc:creator>
      <pubDate>Tue, 16 Sep 2025 13:19:18 +0000</pubDate>
      <link>https://dev.to/susan_mary2004/java-full-stack-development-java-script-2nj2</link>
      <guid>https://dev.to/susan_mary2004/java-full-stack-development-java-script-2nj2</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is JavaScript ?&lt;/strong&gt;&lt;br&gt;
       It is a programing language that makes a website dynamic(action) and interactive.It can delete, create, and even modify or alter.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data-&lt;/strong&gt;Information&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;String-&lt;/strong&gt;More than one character&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Integer-&lt;/strong&gt;Number&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;JS Library-&lt;/strong&gt;Collection of pre-written code provide ready-to-use function.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;JS framework-&lt;/strong&gt;A st of tools bulid using javascript,specifically designed for building web applications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;VARIABLE:&lt;/strong&gt;&lt;br&gt;
     It is a container that stores a value such as a number, a piece of string, a boolean (true/false), an object, etc.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;EXAMPLE:&lt;/strong&gt;&lt;br&gt;
let name = "Alice";&lt;br&gt;
let age = 25;&lt;br&gt;
let isStudent = true;&lt;/p&gt;

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

&lt;p&gt;name is a variable that holds the string &lt;strong&gt;"Alice"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;age holds the number 25&lt;/p&gt;

&lt;p&gt;isStudent holds the boolean value true&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Variable can be Changeable&lt;/li&gt;
&lt;li&gt;Starts in lower case&lt;/li&gt;
&lt;li&gt;No space in-between&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Can be declared with and without keyword&lt;br&gt;
**&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Dynamically[duck type]-**JavaScript(Need not to mention the datatype)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Statically-&lt;/strong&gt;Java(Mention the data type for the 1st time)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;**&lt;br&gt;
SCOPE:**&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Global-&lt;/strong&gt;Everyone or anyone can access.&lt;br&gt;
&lt;strong&gt;Local-&lt;/strong&gt;Particular people can access or do anything.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>JAVA FULL STACK INTERVIEW QUESTION'S PART-1:</title>
      <dc:creator>Susan J</dc:creator>
      <pubDate>Tue, 02 Sep 2025 18:23:56 +0000</pubDate>
      <link>https://dev.to/susan_mary2004/java-full-stack-interview-questions-part-1-16d9</link>
      <guid>https://dev.to/susan_mary2004/java-full-stack-interview-questions-part-1-16d9</guid>
      <description>&lt;p&gt;&lt;strong&gt;1. What is HTML?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stands for Hyper Text Markup Language.&lt;/li&gt;
&lt;li&gt;Used to create web page in structured form.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;2. What is "Markup Language"?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The given text.doc is defined in structure and presentation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. EM:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stands for Element.&lt;/li&gt;
&lt;li&gt;Used to change font-size in parent class.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Syntax:&lt;/strong&gt;Font-size:2em.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Eg:&lt;/strong&gt;
     .Main_layout{
           font-size:2em;
     }
&lt;/li&gt;
&lt;li&gt;Default font-size:16px;&lt;/li&gt;


&lt;p&gt;&lt;strong&gt;4. REM:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stands for Root Element.&lt;/li&gt;
&lt;li&gt;Used to change fon-size in  element.&lt;/li&gt;
&lt;li&gt;Syntax:font-size:2rem;&lt;/li&gt;
&lt;li&gt;Eg:
 .Main_layout{
       font-size:2rem;
 }
&lt;/li&gt;
&lt;li&gt;Default font-size:16px;&lt;/li&gt;


&lt;p&gt;&lt;strong&gt;5. Doctype:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Declaration appears at the very top of every HTML document(not a tag)[before ].&lt;/li&gt;
&lt;li&gt;Tells the browser what version of HTML.&lt;/li&gt;
&lt;li&gt;Written only in HTML 5.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;6. Anchor Tag&lt;a&gt;:&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Used to create hyperlink(Navigation from one webpage to another).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Attributes:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Used to change the behavior(or)to display the HTML element(all tags).&lt;br&gt;
&lt;a&gt;&lt;br&gt;
&lt;/a&gt;&lt;a&gt;flower*&lt;em&gt;(name)&lt;/em&gt;*&lt;/a&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;href- **Hyper Referece&lt;br&gt;
**src-&lt;/strong&gt; Source file&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;8. Image Tag&lt;a href="" class="article-body-image-wrapper"&gt;&lt;img&gt;&lt;/a&gt;:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Syntax:&lt;/strong&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/%2A%2Alink%2A%2A" 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/%2A%2Alink%2A%2A" alt="name" width="800" height="400"&gt;&lt;/a&gt; alt-Alternative text.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;9. Self Closing Tags:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Empty/void elements.&lt;/li&gt;
&lt;li&gt;Only in HTML 5.&lt;/li&gt;
&lt;li&gt;Not request to close the tag, because it contains no content.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;10. Types:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;/ul&gt;
&lt;/ul&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- **&amp;lt;br&amp;gt;**-Break[to start from next line].
- **&amp;lt;hr&amp;gt;-**Horizontal line[left-right].
- **&amp;lt;vr&amp;gt;-**Vertical line[top-button].
- **&amp;lt;img&amp;gt;-**Image (path of the img)[src,alt].
- **&amp;lt;input&amp;gt;-**Buttons("btns").

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





</description>
    </item>
    <item>
      <title>JAVA FULL STACK DEVELOPMENT:</title>
      <dc:creator>Susan J</dc:creator>
      <pubDate>Sat, 30 Aug 2025 19:20:23 +0000</pubDate>
      <link>https://dev.to/susan_mary2004/java-full-stack-development-3f94</link>
      <guid>https://dev.to/susan_mary2004/java-full-stack-development-3f94</guid>
      <description>&lt;p&gt;&lt;u&gt;&lt;strong&gt;GRID:&lt;/strong&gt;&lt;/u&gt;&lt;br&gt;
      CSS Grid is a layout system that allows you to create complex web designs using rows and columns.A grid layout consist of a parent element with one or more grid items. All direct children of grid containers become grid items automatically.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;&lt;br&gt;
  &lt;strong&gt;Key Concepts:&lt;/strong&gt;&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;display: grid;:&lt;/strong&gt; Turns a container into a grid.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;grid-template-columns:&lt;/strong&gt; Defines the number and size of columns.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;grid-gap:&lt;/strong&gt; Sets the space between grid items.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;&lt;strong&gt;Basic Example of CSS Grid:&lt;/strong&gt;&lt;/u&gt;&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;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;meta charset="UTF-8"&amp;gt;
  &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
  &amp;lt;title&amp;gt;CSS Grid Example&amp;lt;/title&amp;gt;
  &amp;lt;style&amp;gt;
    .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
      grid-gap: 20px; /* space between grid items */
    }
    .item {
      background-color: lightblue;
      padding: 20px;
      text-align: center;
    }
  &amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;div class="container"&amp;gt;
    &amp;lt;div class="item"&amp;gt;Item 1&amp;lt;/div&amp;gt;
    &amp;lt;div class="item"&amp;gt;Item 2&amp;lt;/div&amp;gt;
    &amp;lt;div class="item"&amp;gt;Item 3&amp;lt;/div&amp;gt;
    &amp;lt;div class="item"&amp;gt;Item 4&amp;lt;/div&amp;gt;
    &amp;lt;div class="item"&amp;gt;Item 5&amp;lt;/div&amp;gt;
    &amp;lt;div class="item"&amp;gt;Item 6&amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

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

&lt;/div&gt;



&lt;p&gt;&lt;u&gt;&lt;br&gt;
&lt;strong&gt;Adjusting Grid Layout:&lt;/strong&gt;&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;You can also change how many columns or rows appear depending on the screen size. This can be done using media queries for responsiveness.&lt;br&gt;
This would make the layout more responsive on mobile devices.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr 1fr; /* 2 columns on smaller screens */
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;u&gt;padding in CSS:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Padding is the space inside an element, between the content and the border.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;padding property has four values:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;**    padding:** 25px 50px 75px 100px;&lt;br&gt;
        top padding is 25px&lt;br&gt;
        right padding is 50px&lt;br&gt;
        bottom padding is 75px&lt;br&gt;
        left padding is 100px&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Syntax:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.element {
  padding: 20px; /* all sides */
  padding: 10px 15px; /* top-bottom | left-right */
  padding: 10px 15px 20px; /* top | left-right | bottom */
  padding: 10px 15px 20px 25px; /* top | right | bottom | left */
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.box {
  padding: 20px;
  background-color: lightgray;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This adds 20px of space inside the .box, around its content.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;br&gt;
SEO (Search Engine Optimization):&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;SEO is the process of improving a website’s visibility in search engine results (like Google) to get more organic (non-paid) traffic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;It has three main parts:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;On-Page SEO –&lt;/strong&gt; Optimizing content, keywords, titles, meta tags, internal links.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Off-Page SEO –&lt;/strong&gt; Building backlinks from other reputable websites.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Technical SEO –&lt;/strong&gt; Ensuring the site loads fast, is mobile-friendly, and can be crawled/indexed by search engines.&lt;/p&gt;

&lt;p&gt;The goal is to rank higher for relevant search terms so more people find your website naturally.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>DAY 5, 6 AND 7 OF JAVA FULL STACK LEARNING :</title>
      <dc:creator>Susan J</dc:creator>
      <pubDate>Wed, 16 Jul 2025 18:37:21 +0000</pubDate>
      <link>https://dev.to/susan_mary2004/day-5-6-and-7-of-java-full-stack-learning--28h4</link>
      <guid>https://dev.to/susan_mary2004/day-5-6-and-7-of-java-full-stack-learning--28h4</guid>
      <description>&lt;p&gt;&lt;strong&gt;&lt;u&gt;GIT :&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  -**Global Information Tracker[GIT].**
  -Can recovery the program even the system is cracked.
  -It is a open source - licence free.
  -It is a Version Control System**[VCS]**.
  -Used to track changes in source code during software development.
  -Used by developers to maintain different version, collaborate, manage project history of code.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;KEY CONCEPTS :&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**REPOSITORY[Repo]:**A directory that contains your project and its version history.

**COMMIT:**A snapshot of your changes. You write a message to describe it.

**BRANCH:**A separate line of development.

**MERGE:**Combines changes from different branches.

**CLONE:**Copy a remote repository to your local machine.

**PULL:**Download and intergrate changes from a remote repo.

**PUSH:**Update your changes to a local repository.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;BASIC GIT COMMANDS :&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1.git init&lt;/strong&gt; - Create a new Git&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.git clone&lt;/strong&gt; - Copy the code&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.git status&lt;/strong&gt; - Check the status&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4.git add&lt;/strong&gt;- To track&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5.git add.&lt;/strong&gt; - Track all file&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6.git restore-stage&lt;/strong&gt; - To untrack&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7.git commit-m(Message)&lt;/strong&gt; - Save changes&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;8.git push&lt;/strong&gt; - Upload to remote&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;9.git pull&lt;/strong&gt;- Download changes&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;10.git log&lt;/strong&gt; - Check the history(see commit)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;11.git branch&lt;/strong&gt; - List branch&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;12.&lt;/strong&gt;&lt;strong&gt;git checkout&lt;/strong&gt; - Switch a branch&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;13.&lt;/strong&gt;&lt;strong&gt;git merge&lt;/strong&gt; - Merge a branch&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;USES:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- Track history.
- Allow collaboration.
- Supports branching and merging.
- Work offline.
- Open-source and fast.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;GITLAB/GITHUB:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;GITLAB:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**Owned by**: GitLab Inc. (open-core company)
**Best for**: DevOps teams, full CI/CD automation
**UI/UX**: Slightly more complex but powerful
**CI/CD**: Built-in GitLab CI/CD is very strong
**Self-hosting**: Easier to self-host (free Community Edition)
**Free Private Repos**: Yes
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;GITHUB&lt;/u&gt;&lt;/strong&gt;:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**Owned by**: Microsoft
**Best for:**Open-source projects (biggest community)
**UI/UX**: More beginner-friendly
**CI/CD**: GitHub Actions (built-in)
**Integration**: Strong third-party integrations (VS Code, Azure, etc.)
**Free Private Repos**: Yes
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;WORKING OF GITLAB:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP-1:&lt;/strong&gt;Install Gitlab.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP-2&lt;/strong&gt;:Create new group.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;+(create new group[Top left])&lt;/li&gt;
&lt;li&gt;Create group name&lt;/li&gt;
&lt;li&gt;Visiblity level(Public)&lt;/li&gt;
&lt;li&gt;Who will use this group?&lt;/li&gt;
&lt;li&gt;Submit&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;STEP-3&lt;/strong&gt;:New project.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create blank project&lt;/li&gt;
&lt;li&gt;Create project name&lt;/li&gt;
&lt;li&gt;Visiblity level(Public)&lt;/li&gt;
&lt;li&gt;Create project&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;STEP-4&lt;/strong&gt;:Add member.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Manage(Left middle)&lt;/li&gt;
&lt;li&gt;Members&lt;/li&gt;
&lt;li&gt;Invite members(Top right)&lt;/li&gt;
&lt;li&gt;Username/name/email(Can add more than 2)&lt;/li&gt;
&lt;li&gt;Select maximum role&lt;/li&gt;
&lt;li&gt;Access expire date(Optional)&lt;/li&gt;
&lt;li&gt;Invite&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;STEP-5&lt;/strong&gt;:Clone code.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Extract code&lt;/li&gt;
&lt;li&gt;Project&lt;/li&gt;
&lt;li&gt;code(Top right)&lt;/li&gt;
&lt;li&gt;Clone with SSH/HTTPS(Copy URL)&lt;/li&gt;
&lt;li&gt;Save(Location[optional])&lt;/li&gt;
&lt;li&gt;Open in terminal(Right click)&lt;/li&gt;
&lt;li&gt;git clone(Paste the URL)&lt;/li&gt;
&lt;li&gt;Enter (If"done" comes then it is clone)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;STEP-6&lt;/strong&gt;:Push code in gitlab.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create a new project&lt;/li&gt;
&lt;li&gt;git add/add.&lt;/li&gt;
&lt;li&gt;git commit -m&lt;/li&gt;
&lt;li&gt;git push&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>JAVA FULL STACK DEVELOPER</title>
      <dc:creator>Susan J</dc:creator>
      <pubDate>Thu, 10 Jul 2025 15:40:52 +0000</pubDate>
      <link>https://dev.to/susan_mary2004/java-full-stack-developer-4gep</link>
      <guid>https://dev.to/susan_mary2004/java-full-stack-developer-4gep</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hello everyone,&lt;/strong&gt; &lt;br&gt;
I'm &lt;strong&gt;Susan Mary J,&lt;/strong&gt; &lt;br&gt;
This is my fourth day of Java full stack. For past fourth days we were learning about &lt;strong&gt;HTML,CSS &amp;amp; LINUX installation&lt;/strong&gt; too. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;SHORTCUTS:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Ctrl + shift + i - Alinement &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ctrl + s - Save&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Shift + 1 - !&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;! + enter - Default Code&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ctrl + shift + Ctrl- Copy text from terminal &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ctrl + shift + v - Paste text into the terminal &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ctrl + shift + t - Open new terminal &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ctrl + l - clear the terminal&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;*&lt;em&gt;&lt;u&gt;REASON TO INSTALL LINUX : &lt;/u&gt;&lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Free &amp;amp; open source&lt;/li&gt;
&lt;li&gt;Better security &lt;/li&gt;
&lt;li&gt;Great for programming &lt;/li&gt;
&lt;li&gt;Customizable interface&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;&lt;strong&gt;LINUX INSTALLATION:&lt;/strong&gt;&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;STEP-1:Pick the LINUX version*&lt;em&gt;[UBUNTU/LINUX MINT]&lt;/em&gt;*&lt;/p&gt;

&lt;p&gt;STEP-2:Make a Bootable USB*&lt;em&gt;[Rufus/Etcher]&lt;/em&gt;*&lt;/p&gt;

&lt;p&gt;STEP-3:Plug in &amp;amp; restart your computer*&lt;em&gt;[Press F12/F2/Esc]&lt;/em&gt;*,select the USB drive. &lt;/p&gt;

&lt;p&gt;STEP-4:Install LINUX &lt;strong&gt;[Choose Language,  time zone, username &amp;amp; password]&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;STEP-5:Finish installation &lt;strong&gt;[Wait for few minutes, remove the USB &amp;amp; restart your computer]&lt;/strong&gt;&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Hyper Text Markup Language &lt;/li&gt;
&lt;li&gt;Used to create webpage to display web browser. &lt;/li&gt;
&lt;li&gt;Web pages are created using tags. &lt;/li&gt;
&lt;li&gt;Works for CSS and JavaScript.&lt;/li&gt;
&lt;li&gt;We can work in specific version of html.&lt;/li&gt;
&lt;li&gt;Web technology evolved, html 4 could no longer keep up with modern needs so versio of html 4 changed to html 5. &lt;/li&gt;
&lt;/ul&gt;

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

&lt;ul&gt;
&lt;li&gt;- Keywords used to mark and formats parts of a web page. &lt;/li&gt;
&lt;li&gt;Tell the browser how to display content. 
&lt;code&gt;&amp;lt;p&amp;gt; - open tags 
&amp;lt;/p&amp;gt;&lt;/code&gt; - close tag&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;TYPES OF TAGS:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;h1&amp;gt;to&amp;lt;h6&amp;gt;&lt;/code&gt; - Size of heading&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; - Paragraph &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;h&amp;gt;&lt;/code&gt; - Heading&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;img&amp;gt;&lt;/code&gt; - Image [Self closing tags]&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;div&amp;gt;&lt;/code&gt; - Block container&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;span&amp;gt;&lt;/code&gt; - Inline container&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;br&amp;gt;&lt;/code&gt; - Line break [No closing tag]&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;hr&amp;gt;&lt;/code&gt; - Horizontal rule [No closing tag]&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;VERSIONS OF HTML:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;HTML 1.0&lt;/li&gt;
&lt;li&gt;HTML 2.0&lt;/li&gt;
&lt;li&gt;HTML 3.2&lt;/li&gt;
&lt;li&gt;HTML 4.01&lt;/li&gt;
&lt;li&gt;XHTML&lt;/li&gt;
&lt;li&gt;HTML 5&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;SAMPLE PROGRAM:&lt;/u&gt;&lt;/strong&gt;&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;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;My First Web Page&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;h1&amp;gt;Welcome to My Website&amp;lt;/h1&amp;gt;
    &amp;lt;p&amp;gt;This is a simple HTML page.&amp;lt;/p&amp;gt;

    &amp;lt;button onclick="alert('Hello!')"&amp;gt;Click Me&amp;lt;/button&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;       `
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
  </channel>
</rss>
