<?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: FRANCIS NJOROGE MUTHONI</title>
    <description>The latest articles on DEV Community by FRANCIS NJOROGE MUTHONI (@frank6496).</description>
    <link>https://dev.to/frank6496</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%2F627757%2Fb5eaf40b-3eec-4157-92a2-02ef213c46c4.jpeg</url>
      <title>DEV Community: FRANCIS NJOROGE MUTHONI</title>
      <link>https://dev.to/frank6496</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/frank6496"/>
    <language>en</language>
    <item>
      <title>HNGi8 x I4G Internship</title>
      <dc:creator>FRANCIS NJOROGE MUTHONI</dc:creator>
      <pubDate>Wed, 18 Aug 2021 15:47:12 +0000</pubDate>
      <link>https://dev.to/frank6496/hngi8-x-i4g-internship-1cdd</link>
      <guid>https://dev.to/frank6496/hngi8-x-i4g-internship-1cdd</guid>
      <description>&lt;h3&gt;
  
  
  MY TECH JOURNEY
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;My name is Francis Njoroge Muthoni, a tech enthusiast and a go-getter. I'm passionate about tech and my mission is to upskill and become a tech guru in the industry even before I finish my Bachelor's Degree in Software Engineering as I believe that the best time to work on bettering oneself is by working hard &amp;amp; smart each and every time of the day&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  MY GOALS FOR THE INTERNSHIP
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Mastering and building up my tech skills in Front-End &lt;/li&gt;
&lt;li&gt;Sharing ideas and learning new things with &amp;amp; from my fellow developers &lt;/li&gt;
&lt;li&gt;Networking and making new friends from the industry &lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  WHAT I WOULD LIKE TO ACHIEVE BY THE END OF 8 WEEKS
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Been My 1st Internship as a Front End Developer, My I would like to master the industrial skills that would lead me a job as I'm really awaiting for the moment I'll crack every interview question for mastering the concepts and building productive systems/software's.&lt;/em&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Tutorials for skills practicing
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=FTFaQWZBqQ8"&gt;Designing with Figma&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.youtube.com/watch?v=8JJ101D3knE"&gt;Learn Git for beginner's&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.youtube.com/watch?v=qz0aGYrrlhU"&gt;Basic training in HTML&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.youtube.com/watch?v=Qqx_wzMmFeA"&gt;Basic training in JavaScript&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;em&gt;The following is the link to the internship&lt;/em&gt;&lt;/em&gt;&lt;br&gt;
&lt;a href="https://internship.zuri.team"&gt;The link to the internship&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HTML Basics from a Newbie: Part 1</title>
      <dc:creator>FRANCIS NJOROGE MUTHONI</dc:creator>
      <pubDate>Sat, 08 May 2021 13:37:08 +0000</pubDate>
      <link>https://dev.to/frank6496/html-basics-from-a-newbie-1iba</link>
      <guid>https://dev.to/frank6496/html-basics-from-a-newbie-1iba</guid>
      <description>&lt;h3&gt;
  
  
  Learn the basics of Hyper Text Mark-Up Language from &lt;em&gt;A Code Newbie&lt;/em&gt;
&lt;/h3&gt;




&lt;h2&gt;
  
  
  HTML Introduction
&lt;/h2&gt;

&lt;h4&gt;
  
  
  What is HTML?
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;HTML stands for Hyper Text Markup Language&lt;/li&gt;
&lt;li&gt;HTML is the standard markup language for creating Web pages&lt;/li&gt;
&lt;li&gt;HTML describes the structure of a Web page&lt;/li&gt;
&lt;li&gt;HTML consists of a series of elements&lt;/li&gt;
&lt;li&gt;HTML elements tell the browser how to display the content&lt;/li&gt;
&lt;li&gt;HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  A Simple HTML Document Example
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;title&amp;gt;&lt;/span&gt;Page Title&lt;span class="nt"&gt;&amp;lt;/title&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;My First Heading&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;My first paragraph.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/html&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Example Explained
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; The &lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/code&gt; declaration defines that this document is an HTML5 document&lt;/li&gt;
&lt;li&gt; The &lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; element is the root element of an HTML page
&lt;/li&gt;
&lt;li&gt; The &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; element contains meta information about the HTML page&lt;/li&gt;
&lt;li&gt; The &lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt; element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
&lt;/li&gt;
&lt;li&gt; The &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.&lt;/li&gt;
&lt;li&gt; The &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; element defines a large heading&lt;/li&gt;
&lt;li&gt; The &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; element defines a paragraph&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  What is an HTML Element?
&lt;/h3&gt;

&lt;p&gt;An HTML element is defined by a start tag, some content, and an end tag:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;tagname&amp;gt;&lt;/code&gt;Content goes here...&lt;code&gt;&amp;lt;/tagname&amp;gt;&lt;/code&gt;
The HTML element is everything from the start tag to the end tag:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;My First Heading&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;My first paragraph.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  HTML Tags
&lt;/h3&gt;

&lt;p&gt;HTML tags are like keywords which defines that how web browser will format and display the content. With the help of tags, a web browser can distinguish between an HTML content and a simple content. HTML tags contain three main parts: opening tag, content and closing tag. But some HTML tags are unclosed tags.&lt;/p&gt;

&lt;p&gt;When a web browser reads an HTML document, browser reads it from top to bottom and left to right. HTML tags are used to create HTML documents and render their properties. Each HTML tags have different properties.&lt;/p&gt;

&lt;p&gt;An HTML file must have some essential tags so that web browser can differentiate between a simple text and HTML text. You can use as many tags you want as per your code requirement.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;All HTML tags must enclosed within &lt;code&gt;&amp;lt; &amp;gt;&lt;/code&gt; these brackets.&lt;/li&gt;
&lt;li&gt;Every tag in HTML perform different tasks.&lt;/li&gt;
&lt;li&gt;If you have used an open tag &lt;code&gt;&amp;lt;tag&amp;gt;&lt;/code&gt;, then you must use a close tag &lt;code&gt;&amp;lt;/tag&amp;gt;&lt;/code&gt; (except some tags) for example &lt;code&gt;&amp;lt;br&amp;gt;&lt;/code&gt; &amp;amp; etc&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Examples of tags to name a few&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Start tag&lt;/th&gt;
&lt;th&gt;Element content&lt;/th&gt;
&lt;th&gt;End tag&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;My First Heading&lt;/td&gt;
&lt;td&gt;&lt;code&gt;&amp;lt;/h1&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;My first paragraph&lt;/td&gt;
&lt;td&gt;&lt;code&gt;&amp;lt;/p&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;&amp;lt;br&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;none&lt;/td&gt;
&lt;td&gt;none&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;p&gt;&lt;strong&gt;&lt;em&gt;Happy Coding To My Fellow Newbies&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Coding Becomes easier when you understand how things works under the hood" - Frank the Code Newbie&lt;/p&gt;
&lt;/blockquote&gt;

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