<?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: Mohd Muneeb</title>
    <description>The latest articles on DEV Community by Mohd Muneeb (@mohdmuneeb).</description>
    <link>https://dev.to/mohdmuneeb</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%2F805062%2F23f1b2d1-90d9-44e3-aa50-059a95f11f24.png</url>
      <title>DEV Community: Mohd Muneeb</title>
      <link>https://dev.to/mohdmuneeb</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mohdmuneeb"/>
    <language>en</language>
    <item>
      <title>How to create your first website, real fast!</title>
      <dc:creator>Mohd Muneeb</dc:creator>
      <pubDate>Mon, 17 Oct 2022 16:10:15 +0000</pubDate>
      <link>https://dev.to/mohdmuneeb/how-to-create-your-first-website-real-fast-3bi6</link>
      <guid>https://dev.to/mohdmuneeb/how-to-create-your-first-website-real-fast-3bi6</guid>
      <description>&lt;h2&gt;
  
  
  Getting into the ocean of web development.
&lt;/h2&gt;

&lt;p&gt;Firstly, If you are reading this blog, I want you to congratulate yourself. Thank yourself for doing something productive with your time. Now let's get into the meat of the topic. How do I make my first website real fast. Well, I'll go over the method which I used while making my first website.&lt;/p&gt;

&lt;h2&gt;
  
  
  The HTML &lt;code&gt;&amp;lt;div&amp;gt;&lt;/code&gt;ision
&lt;/h2&gt;

&lt;p&gt;Hyper text markup language, or HTML is a language that define the the structure of content on a webpage. If you want to know a quick over view of this piece of technology, I highly suggest you watch this &lt;a href="https://www.youtube.com/watch?v=ok-plXXHlWw"&gt;video&lt;/a&gt; by Fireship.io . He is my inspiration for programming, in the simplest terms(No paid promotions). Now that you know what HTML is, let's learn how to use it.&lt;/p&gt;

&lt;p&gt;Firstly, create a new folder in your Desktop or Documents folder. This is the place you will write the code for your first website.&lt;br&gt;
Now that the work space is settled, let's write some code.&lt;/p&gt;

&lt;p&gt;Create a new file and name it as &lt;code&gt;index.html&lt;/code&gt;. Remember, it is not necessary to name your file &lt;code&gt;index.html&lt;/code&gt;, it's just how the naming convention works. Now, open the &lt;code&gt;index.html&lt;/code&gt; file in Leafpad/Notepad/TextEdit. This is just for the time being, If you want to get serious about making websites, you should install an IDE, I suggest you to use VS Code because I personally use a lot of extension available on VS Code. For now, let's carry on with Notepad/Leafpad/TextEdit. Make sure it is &lt;code&gt;index.html&lt;/code&gt; and not &lt;code&gt;index.html.txt&lt;/code&gt;.&lt;br&gt;
Great, let's type the first line of code. Start with the following.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Iss9modB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/u0xsqle4ll5nn2uli0xx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Iss9modB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/u0xsqle4ll5nn2uli0xx.png" alt="First website. HTML. html tags" width="486" height="596"&gt;&lt;/a&gt;&lt;br&gt;
This is how any webpage, as far as I know looks like. There is a &lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; tag which acts like parent to all the other upcoming content. Anything in this &lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; tag is displayed in the browser when the html file is open&lt;br&gt;
Save the file, copy it's location and paste the location of the file in the browser. When done correctly. It should show a blank white page.&lt;br&gt;
Next step is to remove this boring, empty white page and add something cool to it. Update the code to the following.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dCrC5Qu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mk3sx2yti2egm8iowy3t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dCrC5Qu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mk3sx2yti2egm8iowy3t.png" alt="First website. HTML. html tags" width="880" height="456"&gt;&lt;/a&gt;&lt;br&gt;
Save this and refresh the page in the browser. It should show &lt;code&gt;First Website&lt;/code&gt; at the top of the page. Now that you have tasted the magic, let's get real!&lt;/p&gt;

&lt;p&gt;The title tag appends a title to the document when open in the browser. There are several other such tags which have their own purposes to serve in making of a website. Now that we have a title, let's go to update our code to show some text!&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--khsW5KDw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/g75dyzb41nmjh1nql1s6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--khsW5KDw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/g75dyzb41nmjh1nql1s6.png" alt="First website. HTML. head tags, header tags" width="880" height="481"&gt;&lt;/a&gt;&lt;br&gt;
Save this and refresh the browser to get an amazing look at your first website. If you were along with me until this point, it should look something like this.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Csa5G3V_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ne4jujunhrcp9vovltak.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Csa5G3V_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ne4jujunhrcp9vovltak.png" alt="First website. HTML. body tags" width="781" height="1011"&gt;&lt;/a&gt;&lt;br&gt;
This may not seem impressive at first, but I was extremely happy when I first made my website. &lt;br&gt;
Now that we have our site, we need to show it to the world. Get your google drive account ready for this.&lt;/p&gt;

&lt;h1&gt;
  
  
  "Hosting" the website!
&lt;/h1&gt;

&lt;p&gt;Now, make a folder in your google drive. Upload the &lt;code&gt;index.html&lt;/code&gt; file to the newly created folder. Now, select the &lt;code&gt;index.html&lt;/code&gt; file and right click it.&lt;br&gt;
Among the several options shown, chose the &lt;em&gt;Get link&lt;/em&gt; option. Set the link to be public (anyone can view) and share the link with your friends. You should have the same website in any browser, up and running to perfection. &lt;/p&gt;

&lt;p&gt;Congrats on you journey with me! Have a great day!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>tutorial</category>
      <category>beginners</category>
      <category>html</category>
    </item>
    <item>
      <title>My journey in the land of Linux!</title>
      <dc:creator>Mohd Muneeb</dc:creator>
      <pubDate>Thu, 08 Sep 2022 13:33:40 +0000</pubDate>
      <link>https://dev.to/mohdmuneeb/my-journey-in-the-land-of-linux-dib</link>
      <guid>https://dev.to/mohdmuneeb/my-journey-in-the-land-of-linux-dib</guid>
      <description>&lt;p&gt;Before we learn about my Linux journey, let us take a glimpse at my past! It was probably year 2016 when I got my first computer, and like any classic teenager would, I stuck to playing games. It taught me several things to be honest. The one's that top the list are File Management, Torrent, How to not get &lt;del&gt;click-baited&lt;/del&gt; and such things. This was the beginning of my using tech, never knew that the stuff I did back then would influence me to this extent.&lt;/p&gt;

&lt;h2&gt;
  
  
  Beginning of Linux
&lt;/h2&gt;

&lt;p&gt;Around 2018, I was reading an article by &lt;a href="https://null-byte.wonderhowto.com/"&gt;NullByte&lt;/a&gt; and that was the bloom of linux in my mind. I, like many other linux enthusiast started my journey with the Debian based &lt;em&gt;Kali Linux&lt;/em&gt; distro. To my surprise, It was excellent. Of course I wiped off the hard disk from the family computer while installing a new operating system on bare metal, but the sense of accomplishment was much greater to be honest. So I stuck with it for a while until high school happened&lt;/p&gt;

&lt;h2&gt;
  
  
  Welcome to the High School
&lt;/h2&gt;

&lt;p&gt;In my country, secondary high school is a big deal since we have highly competitive exams to attempt and crack. Unfortunately, I didn't make it but that's a different story for a different blog.&lt;br&gt;
Now that High school was over, I had alot of free time and I mean &lt;strong&gt;Alot&lt;/strong&gt;, it was around this time I made my &lt;a href="http://mohdmuneeb.live"&gt;First Website&lt;/a&gt;, but this free time allowed me to experiment!&lt;/p&gt;

&lt;h2&gt;
  
  
  Let the Experiment begin
&lt;/h2&gt;

&lt;p&gt;Oh boy this was a really fast paced time, I went from Kali linux to Parrot Security OS real fast. Parrot was really good. I had similar UI (ofc I use GNOME), easier installation and best of all was the fact that it had all the pentesting tools like burp, metasploit, aircrack-ng, Zenmap, Ettercap and many other in built. The cherry on top was that it connected to Wi-Fi drivers without a hassle. Soo this was something I loved. The came Pop OS! to the story. Pop!OS was clean, it was really beginner friendly. I really should have tried it a long time ago. But hey we were here. Then I went to Garuda Linux. This was &lt;strong&gt;too cool&lt;/strong&gt;, trust me. The Dragonised theme was top notch, it was an eyecandy. The boot-time was fast but not as fast as PopOS or any other's. It was not the most user friendly distro, but it was alright because I already had gotten a hang of Linux by now. A few other distro's were Ubuntu, Manjaro, &lt;em&gt;I tried Gentoo but miserably failed&lt;/em&gt; and CuteFish OS&lt;/p&gt;

&lt;h2&gt;
  
  
  I use Arch btw!
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2nPSRMbS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9wrjuu8wa29itgdfakhp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2nPSRMbS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9wrjuu8wa29itgdfakhp.png" alt="My Arch Wallpaper in the start of my Arch Journey when I used i3wm" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
As you guessed, I ofc stumbled upon Arch, I love it. It has arguably the fastest boot time I have ever seen. I know exactly what to install or update whenever anything goes wrong. I also fell in love with &lt;a href="https://www.reddit.com/r/unixporn/"&gt;r/unixporn&lt;/a&gt; and Arch was perfect for testing ever single dot file I could get my hands on. Now, currently I am on Arch and I think I will continue to experiment with it!&lt;/p&gt;

</description>
      <category>linux</category>
      <category>beginners</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
