<?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: Raheem Amer</title>
    <description>The latest articles on DEV Community by Raheem Amer (@raheemamer).</description>
    <link>https://dev.to/raheemamer</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%2F723004%2F841b4fe8-01a5-4db8-92af-2d428dc5ec3e.jpg</url>
      <title>DEV Community: Raheem Amer</title>
      <link>https://dev.to/raheemamer</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/raheemamer"/>
    <language>en</language>
    <item>
      <title>Web Dev 101 (P:2)</title>
      <dc:creator>Raheem Amer</dc:creator>
      <pubDate>Tue, 05 Apr 2022 17:39:34 +0000</pubDate>
      <link>https://dev.to/raheemamer/web-dev-101-p2-4igl</link>
      <guid>https://dev.to/raheemamer/web-dev-101-p2-4igl</guid>
      <description>&lt;h2&gt;
  
  
  Have you heard the term &lt;strong&gt;box model&lt;/strong&gt; before?
&lt;/h2&gt;

&lt;p&gt;If you did, then good job but if not let's talk about it.&lt;/p&gt;

&lt;p&gt;Briefly, A box model is similar to a box that contains a bunch of stuff inside of it and these stuff are ?&lt;br&gt;
1- Content &lt;br&gt;
2- Padding&lt;br&gt;
3- Border&lt;br&gt;
4- Margin&lt;/p&gt;

&lt;p&gt;This will help you visualize the whole concept a bit&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1O6eX7Kx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/w5jwcwv9uql442ljpti6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1O6eX7Kx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/w5jwcwv9uql442ljpti6.png" alt="A visual of box model term" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Okay, great! let's know more?&lt;/p&gt;

&lt;p&gt;Content:&lt;br&gt;
It's basically the information inside the box, like for example&lt;br&gt;
if we have a code like this&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;p&amp;gt; Hello World &amp;lt;/p&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;So, the content here is gonna be hello world&lt;/p&gt;

&lt;p&gt;Padding:&lt;br&gt;
It's the space around the content &lt;/p&gt;

&lt;p&gt;Border:&lt;br&gt;
it lays between the margin and the padding, basically plays the middle man between them&lt;/p&gt;

&lt;p&gt;Margin:&lt;br&gt;
The big boy, if we have 2 div stick to each other and you want to separate them then margin is the one to call here why?&lt;br&gt;
because margin controls the outer space of boxes, the outer space around the box to be exact.&lt;/p&gt;

&lt;p&gt;As you can see, it's easy just read this stuff but in fact it's one of the most challenging things you have to face while learning CSS.&lt;/p&gt;

&lt;p&gt;Have a great day everyone and thank you &amp;lt;3&lt;/p&gt;

</description>
      <category>css</category>
      <category>beginners</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Web Dev 101 (P:1)</title>
      <dc:creator>Raheem Amer</dc:creator>
      <pubDate>Fri, 11 Mar 2022 13:37:49 +0000</pubDate>
      <link>https://dev.to/raheemamer/web-dev-101-easy-2hp8</link>
      <guid>https://dev.to/raheemamer/web-dev-101-easy-2hp8</guid>
      <description>&lt;h2&gt;
  
  
  Have you heard the terms IP, DNS, HTTP, and HTTPS before?
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;if not, then this article will help you grasp a piece of basic information about them.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;let's imagine that the internet is like a district that's filled with houses, each house has a mailing address in case someone wanna send you something, they write your mail address and the mailing company takes care of it. You check your mailbox the next day and there is the present that your sister told you about.&lt;/p&gt;

&lt;p&gt;So the company here is the internet, it helps you to send and receive data online.&lt;/p&gt;

&lt;p&gt;The mailing address here is the IP or the internet protocol, each device that logs on the internet has a unique set of numbers, these set numbers are the numbers that define your location on the internet so anything you do on the internet like simply logging in to Dev community's website, you send a logging message with your numbers ( IP ) to their server and they respond with letting you in.&lt;/p&gt;

&lt;p&gt;What about HTTP and HTTPS?&lt;br&gt;
HTTP stands for hypertext transfer protocol and what it does is to monitor the transfer of information between you and the other person or service.&lt;/p&gt;

&lt;p&gt;But how?&lt;br&gt;
It's called protocol for a reason right? So, for each connection made on the internet, its job is to check whether both parties are following a set of rules to allow the transfer of information between them. &lt;/p&gt;

&lt;p&gt;But wait what's HTTPS?&lt;br&gt;
I guess most of us heard this quote &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;no system is safe &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;so what it does is to encrypt the connection established between the parties to be more secure.&lt;/p&gt;

&lt;p&gt;As for DNS?&lt;br&gt;
It's called a domain name server, so when you want to google stuff like any normal person, you simply type youtube but no the IP address of youtube if you do then you are a weirdo man.&lt;/p&gt;

&lt;p&gt;So, What DNS does is basically lookup in its information and convert the domain name into IP and then you will be redirected to your desired destination.&lt;/p&gt;

&lt;p&gt;Thank you and good luck &amp;lt;3 &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>easy</category>
      <category>basics</category>
    </item>
  </channel>
</rss>
