<?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: Falence Lemungoh</title>
    <description>The latest articles on DEV Community by Falence Lemungoh (@falencelemungoh).</description>
    <link>https://dev.to/falencelemungoh</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%2F594658%2F4c91998f-f0d1-4994-8c40-0163a8044998.jpeg</url>
      <title>DEV Community: Falence Lemungoh</title>
      <link>https://dev.to/falencelemungoh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/falencelemungoh"/>
    <language>en</language>
    <item>
      <title>Why HTML is a must for every website.</title>
      <dc:creator>Falence Lemungoh</dc:creator>
      <pubDate>Wed, 18 May 2022 05:39:29 +0000</pubDate>
      <link>https://dev.to/falencelemungoh/why-html-is-a-must-for-every-website-3p9p</link>
      <guid>https://dev.to/falencelemungoh/why-html-is-a-must-for-every-website-3p9p</guid>
      <description>&lt;p&gt;HTML stands for Hyper Text Markup Language and is the standard markup language for creating Web pages. It describes the structure of a Web page, telling the browser how to display the content.&lt;br&gt;
Examples of website built only with HTML include: &lt;a href="http://info.cern.ch/hypertext/WWW/TheProject.html"&gt;The WWW project&lt;/a&gt;, &lt;a href="http://motherfuckingwebsite.com/"&gt;The mother fucking website&lt;/a&gt;, &lt;a href="http://www.toad.com/"&gt;Toad Hall&lt;/a&gt; e.t.c.&lt;/p&gt;

&lt;h2&gt;
  
  
  Semantic HTML
&lt;/h2&gt;

&lt;p&gt;HTML semantic elements clearly give the content it wraps meaning to both the browser and the developer. For example and &lt;code&gt;H1&lt;/code&gt; indicates a top level heading on our page. A few semantic elements include &lt;code&gt;nav&lt;/code&gt;, &lt;code&gt;header&lt;/code&gt;, &lt;code&gt;p&lt;/code&gt;, &lt;code&gt;footer&lt;/code&gt; etc.&lt;/p&gt;

&lt;h2&gt;
  
  
  40 HTML tags
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Container tags:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;html&lt;/code&gt;: Opens and closes an HTML document&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;head&lt;/code&gt;: contains information about document&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;title&lt;/code&gt;: document title&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;body&lt;/code&gt;: contains all visible content of the web page&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;p&lt;/code&gt;: defines a paragraph&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;div&lt;/code&gt;: container for a block of content&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;span&lt;/code&gt;: container for in-line content&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nav&lt;/code&gt;: contains navigation content&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;main&lt;/code&gt;: contains the main content of the web page&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;header&lt;/code&gt;: contains introductory content for a page&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;footer&lt;/code&gt;: contains information about the content on page. e.g the author and a copyright statement.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;td&lt;/code&gt;: defines a cell in a table &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;ol&lt;/code&gt;: defines an ordered list&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;em&lt;/code&gt;: italicize text
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;strong&lt;/code&gt;: bold text&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;ul&lt;/code&gt;: defines an unordered list&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;li&lt;/code&gt;: defines a list item&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;th&lt;/code&gt;: defines table headings&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;tr&lt;/code&gt;: defines a table row&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;table&lt;/code&gt;: adds a table&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;form&lt;/code&gt;: defines a form&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;label&lt;/code&gt;: Defines a label for an &lt;code&gt;input&lt;/code&gt; element&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;textarea&lt;/code&gt;: Defines a multiline input control&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Empty tags
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;hr&lt;/code&gt;: defines a horizontal line&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;br&lt;/code&gt;: defines a line break&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;img&lt;/code&gt;: inserts an image&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;input&lt;/code&gt;: used to collect user input (text, email e.t.c)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;link&lt;/code&gt;: link external files e.g css styles&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;meta&lt;/code&gt;: contains metadata for web pages&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;source&lt;/code&gt;: includes external media to page&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;area&lt;/code&gt;: defines area inside an image man&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;base&lt;/code&gt;: defines abase URL for all URLs in document&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;col&lt;/code&gt;: defines column properties for each column within a &lt;code&gt;colgroup&lt;/code&gt; element&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;embed&lt;/code&gt;: used for interactive content for external application integration&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;wbr&lt;/code&gt;: word break opportunity&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;param&lt;/code&gt;: defines parameters for plugins&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;track&lt;/code&gt;: defines track to be used with a media file&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;command&lt;/code&gt;: define command a visitor can invoke&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;keygen&lt;/code&gt;: defines a key-pair generator field that used by forms&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;menuitem&lt;/code&gt;: defines a command that a user is able to invoke through a popup menu&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>html</category>
    </item>
    <item>
      <title>Difference between Web 2.0 and Web 3.0</title>
      <dc:creator>Falence Lemungoh</dc:creator>
      <pubDate>Wed, 02 Mar 2022 04:51:22 +0000</pubDate>
      <link>https://dev.to/falencelemungoh/difference-between-web-20-and-web-30-2aai</link>
      <guid>https://dev.to/falencelemungoh/difference-between-web-20-and-web-30-2aai</guid>
      <description>&lt;p&gt;Today, the term web 3.0 is been heard on almost all tech platform and this keeps some newbies wondering, hmmmm!&lt;br&gt;
In this article we will be highlighting the main difference between web 2.0 and web 3.0.&lt;/p&gt;

&lt;p&gt;Web 2.0 refers to a version of the internet dominated by companies that offer services in exchange for users' personal data. These companies act as central bodies who own services causing users to trust them with their data before being able to consume these services. This means that data and services are centralized and owned by the big companies that provide these service who can temper with data as they want.&lt;/p&gt;

&lt;p&gt;Web 3.0 comes in to solve this problem of centralization of data by implementing a blockchain where data is decentralized. Here, applications are collectively owned by multiple people and no individual has the power to change data (or a transaction) on the blockchain.&lt;/p&gt;

&lt;p&gt;Do well to checkout &lt;a href="https://blockgames.gg/"&gt;Blockgames&lt;/a&gt;, &lt;a href="https://nestcoin.com/"&gt;Nestcoin&lt;/a&gt; and &lt;a href="https://zuri.team/"&gt;Zuriteam&lt;/a&gt; for amazing web 3.0 contents and training programs.&lt;/p&gt;

</description>
      <category>web3</category>
      <category>web2</category>
      <category>blockchain</category>
    </item>
    <item>
      <title>My HNGi8 x I4G Internship Goals🤓</title>
      <dc:creator>Falence Lemungoh</dc:creator>
      <pubDate>Mon, 16 Aug 2021 11:38:18 +0000</pubDate>
      <link>https://dev.to/falencelemungoh/my-hngi8-x-i4g-internship-goals-2eoo</link>
      <guid>https://dev.to/falencelemungoh/my-hngi8-x-i4g-internship-goals-2eoo</guid>
      <description>&lt;p&gt;Hello I'm Falence Lemungoh and I'll be participating in this year's HNGi8 x I4G internship as a Backend Engineering intern.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's the HNG x I4G Internship?
&lt;/h2&gt;

&lt;p&gt;This is an 8-week remote &lt;a href="https://internship.zuri.team/"&gt;internship&lt;/a&gt; designed to find and develop the most talented software developers and designers.&lt;/p&gt;

&lt;p&gt;The internship is open to just anyone to participate. Anyone can log into the internship using their laptop. Each week, tasks are given. Those who complete them advance forward.&lt;/p&gt;

&lt;p&gt;The intern coders are introduced to complex programming frameworks, and get to work on real world software. The finalists are connected to the best companies in the tech ecosystem and get full time jobs and contracts immediately.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Goals
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Make it as a finalist. That is, to go through all the stages of the internship right up to the last stage, successfully.&lt;/li&gt;
&lt;li&gt;Build and take my backend engineering skills to a whole new level by working with a team on real world projects.&lt;/li&gt;
&lt;li&gt;Connect with amazing and talented software developers and designers all over Africa.&lt;/li&gt;
&lt;li&gt;Have fun while learning and building remotely.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;By the end of this internship, I'll love to be a confident and proficient backend engineer with the right skillset and proven methods and patterns of development on the backend.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Development Stack
&lt;/h2&gt;

&lt;p&gt;I'm a backend engineer focused on building web APIs and services for client consumption. I'm proficient in NodeJS.&lt;/p&gt;

&lt;h2&gt;
  
  
  Resources for beginners
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=c9Wg6Cb_YlU"&gt;Figma&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=8JJ101D3knE"&gt;Git&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=TlB_eWDSMt4&amp;amp;t=836s"&gt;NodeJS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=YS4e4q9oBaU&amp;amp;t=18476s"&gt;Golang&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Kindly checkout the internship's platforms &lt;a href="https://zuri.team"&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Do well to also follow HNG x I4G on twitter:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://twitter.com/hnginternship"&gt;HNG&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/theZuriTeam"&gt;Zuri&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/Ingressive4Good"&gt;Ingressive4Good&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Check out &lt;a href="//cars.ng"&gt;cars.ng&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading.&lt;/p&gt;

</description>
      <category>hngi8</category>
      <category>hngi8xi4g</category>
      <category>zuri</category>
      <category>internship</category>
    </item>
  </channel>
</rss>
