<?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:  Shivangi Sharma</title>
    <description>The latest articles on DEV Community by  Shivangi Sharma (@shivangisharma01).</description>
    <link>https://dev.to/shivangisharma01</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%2F694670%2F83cd50d4-7618-4fc8-a40b-3758747d6f22.png</url>
      <title>DEV Community:  Shivangi Sharma</title>
      <link>https://dev.to/shivangisharma01</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shivangisharma01"/>
    <language>en</language>
    <item>
      <title>Make your Own Portfolio Website Through: CSS3 &amp; HTML5</title>
      <dc:creator> Shivangi Sharma</dc:creator>
      <pubDate>Sun, 29 Aug 2021 14:10:12 +0000</pubDate>
      <link>https://dev.to/shivangisharma01/make-your-own-portfolio-website-through-html5-css3-ip9</link>
      <guid>https://dev.to/shivangisharma01/make-your-own-portfolio-website-through-html5-css3-ip9</guid>
      <description>&lt;p&gt;By only two things you can make your own portfolio website which is HTML5 &amp;amp; CSS3. Through this portfolio you can showcase your till date projects to the people. You can also add different type of features according to your wish, for reference like adding your blogs, your accomplishments, a short biography, your skills and many more things.&lt;br&gt;
Here I'm going to tell you how to structure your portfolio using HTML5  and make it beautiful through the help of CSS3.&lt;br&gt;
&lt;br&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  To begin with first let's understand what is HTML5 and CSS3?
&lt;/h3&gt;

&lt;h6&gt;
  
  
  Html5: It is a &lt;em&gt;Hyper Text markup language&lt;/em&gt; used in presenting and structuring your content in World Wide Web. It has been developed by &lt;em&gt;WHATWG AND W3C group&lt;/em&gt;.
&lt;/h6&gt;

&lt;h6&gt;
  
  
  CSS3: It is a latest version of &lt;em&gt;Cascading Style Sheet&lt;/em&gt; language  which introduced with brand new features like shadow effect, tables, rounded corners, etc. CSS was 1st introduced by Hakon Wium Lie in 1994.
&lt;/h6&gt;



&lt;h3&gt;
  
  
  HTML5 structure
&lt;/h3&gt;

&lt;p&gt;First and foremost thing you will need to make a navigation bar which will direct the person using it to the different pages mentioned in it. The active page of your portfolio will be Home where you will add your skills, link to your project page and blog page. Afterwards you will create different section with the help of unordered or ordered list and add the things you want show for example your skills, project and blog and you can also add a button for project and blog section with anchor tag and href attribute to it to direct the user to that page directly. At the bottom you will make a Footer where you can add your social media link with anchor tag and href attribute. And you are done with html part. &lt;br&gt;
Now lets move to the css directly. &lt;br&gt;
&lt;br&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  CSS3 Structure
&lt;/h3&gt;

&lt;p&gt;Through CSS3 you can do vast type of things like you can different type of colors, background-color, images, background-images, font-style, etc. &lt;br&gt;
For the portfolio first of all you will select the color theme for it. Afterwards you can add your favorite font style through google fonts or any other website by adding the link in the sheet. Last but not least you can add any images to make it more beautiful and relevant. The exciting part of CSS is that you can control every aspect of your website like width, height, size, color, shadows, and end number of things. &lt;/p&gt;

</description>
      <category>html</category>
      <category>css3</category>
      <category>webapp</category>
    </item>
    <item>
      <title>Git vs. GitHub: What's the difference? </title>
      <dc:creator> Shivangi Sharma</dc:creator>
      <pubDate>Fri, 27 Aug 2021 20:37:20 +0000</pubDate>
      <link>https://dev.to/shivangisharma01/git-vs-github-what-s-the-difference-ko4</link>
      <guid>https://dev.to/shivangisharma01/git-vs-github-what-s-the-difference-ko4</guid>
      <description>&lt;h3&gt;
  
  
  Git or GitHub.
&lt;/h3&gt;

&lt;p&gt;Are they the same/equal thing? If not, are they connected/related. The veracity is that Git and GitHub are connected far more closely than you think they're, but with some key differences setting them apart. &lt;/p&gt;

&lt;p&gt;What's the difference between Git and GitHub? Well to know that first we will take a deep-examine at each one. But before we do that you need to know the  concept of &lt;em&gt;version control&lt;/em&gt;. &lt;/p&gt;

&lt;h3&gt;
  
  
  So now what is Version control?
&lt;/h3&gt;

&lt;p&gt;Version control is &lt;em&gt;like a correction tape&lt;/em&gt; for your program. It's work is to save program for your project. It tracks and logs the changes you make to your file sets over time, it gives you the power to review and even restore your earlier versions of your work. If you notice that your text is misaligned so rather than crawling back through every line of your code, you'll  use the version control to reload earlier version of your code, until you find it satisfactory or correct.&lt;/p&gt;

&lt;h6&gt;
  
  
  Now let's flow directly to &lt;em&gt;Git&lt;/em&gt;.
&lt;/h6&gt;

&lt;h3&gt;
  
  
  What is Git?
&lt;/h3&gt;

&lt;p&gt;It was first developed back in 2005. Git is immensely popular and high-quality version of control system.  Git is installed on your &lt;em&gt;local system&lt;/em&gt; and keeps all the record of your ongoing program versions. you do no need any internet access to use it except if you want to download it. Git is extremely easy to use and it is not  paid, hence inexpensive. It also has a branching model which allow user to make their own independent local branches, so that you can try out new ideas but without making changes in your main branch and you can anytime merge, delete and recall them.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is GitHub?
&lt;/h3&gt;

&lt;p&gt;GitHub is Git repository hosting service. It is entirely &lt;em&gt;cloud-based&lt;/em&gt;, totally distinct from git which only allows you to control your projects in your local server/computer.  GitHub is like  an online storage of git , in technical words the database of projects you are working on in your local server it is being saved on the cloud in GitHub. Which allows you and any authorized  person by you to see the work or contribute in that project. Like Git, GitHub also has the branching system which makes it smooth to try different approach's and distinct the work of other person from you so that it does not create any heap. You can excess your work from anywhere in the world just with connectivity of internet. &lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;To conclude Git is a version control system installed on your local system and it keep track of all your work and stores it on local device storage whereas GitHub is a solely cloud-based and a Git repository hosting service. You can push your work from local storage to cloud through internet and access the data from anywhere. &lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
    </item>
  </channel>
</rss>
