<?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: Awwal Bankole</title>
    <description>The latest articles on DEV Community by Awwal Bankole (@lawybanx).</description>
    <link>https://dev.to/lawybanx</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%2F138485%2F8a2d10fb-2cf8-41f9-908d-7ca2879c3704.jpg</url>
      <title>DEV Community: Awwal Bankole</title>
      <link>https://dev.to/lawybanx</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lawybanx"/>
    <language>en</language>
    <item>
      <title>HyperText Markup Language - HTML</title>
      <dc:creator>Awwal Bankole</dc:creator>
      <pubDate>Mon, 16 May 2022 22:24:28 +0000</pubDate>
      <link>https://dev.to/lawybanx/hyperttext-markup-language-html-433e</link>
      <guid>https://dev.to/lawybanx/hyperttext-markup-language-html-433e</guid>
      <description>&lt;h2&gt;
  
  
  What is HTML?
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;meta charset="UTF-8"&amp;gt;
  &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&amp;gt;
  &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
  &amp;lt;title&amp;gt;Document&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;According to &lt;strong&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML"&gt;MDN&lt;/a&gt;&lt;/strong&gt;, &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;HTML (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content. Other technologies besides HTML are generally used to describe a web page's appearance/presentation (CSS) or functionality/behavior (JavaScript).&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Take this analogy for example&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8jIst71n--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dbrukzcby/image/upload/v1652732306/html_obq52d.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8jIst71n--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dbrukzcby/image/upload/v1652732306/html_obq52d.webp" alt="image" width="494" height="311"&gt;&lt;/a&gt;&lt;br&gt;
HTML serves as the structural base for any website, just like how human beings have no form without a skeletal structure, websites are formless as well without HTML.&lt;/p&gt;

&lt;h3&gt;
  
  
  Examples of HTML only websites include
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="http://info.cern.ch/hypertext/WWW/TheProject.html"&gt;The WWW project&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://acme.com/"&gt;ACME&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.fluffbucket.co.uk/howto/htmlonlypg.htm"&gt;Fluffbucket&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://jgthms.com/web-design-in-4-minutes/"&gt;Simplified Web Design&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  HTML Tags
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Doctype
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/code&gt; is a tag that declares the type of the document.&lt;/p&gt;

&lt;h3&gt;
  
  
  Html
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; is the container for all the HTML elements on a webpage(except the Doctype).&lt;/p&gt;

&lt;h3&gt;
  
  
  Head
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; is a container for information about the document.&lt;/p&gt;

&lt;h3&gt;
  
  
  Title
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt; defines the title for the document.&lt;/p&gt;

&lt;h3&gt;
  
  
  Body
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; contains the body content of the document.&lt;/p&gt;

&lt;h2&gt;
  
  
  HTML Semantics
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1bGv9wrN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dbrukzcby/image/upload/v1652735193/semantics_gs9ak8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1bGv9wrN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/dbrukzcby/image/upload/v1652735193/semantics_gs9ak8.png" alt="image" width="800" height="881"&gt;&lt;/a&gt;&lt;br&gt;
Semantic HTML is a way meaning is introduced to the webpage with the elements used rather than just presentation. A webpage that is semantically correct in better understood by the browser. Examples of semantic HTML elements are&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;header&amp;gt;&lt;/code&gt;- declares the header of the document or section.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;nav&amp;gt;&lt;/code&gt; - houses the navigation links. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;main&amp;gt;&lt;/code&gt;- contains the main content of the document.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;section&amp;gt;&lt;/code&gt;- a section of the main content.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;aside&amp;gt;&lt;/code&gt;- content that is outside the main content.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;footer&amp;gt;&lt;/code&gt;- the content at the foot/end of the document. &lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Other HTML Tags/elements include
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;h1&amp;gt; to &amp;lt;h6&amp;gt;&lt;/code&gt;- defines the HTML headings.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;- declares a paragraph &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;div&amp;gt;&lt;/code&gt;- is a container tag that defines a section. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;link&amp;gt;&lt;/code&gt;- it &lt;em&gt;links&lt;/em&gt; to an external resource.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;br&amp;gt;&lt;/code&gt;- defines a single line break.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;hr&amp;gt;&lt;/code&gt;- defines an horizontal line.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;input&amp;gt;&lt;/code&gt;- is used for an input control.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;button&amp;gt;&lt;/code&gt;- &lt;em&gt;a ...button&lt;/em&gt;😲&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;img&amp;gt;&lt;/code&gt;- enables an image to display on the document.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;iframe&amp;gt;&lt;/code&gt;- is used to frame an external webpage onto the webpage. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;blockquote&amp;gt;&lt;/code&gt;- defines a quoted text.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;cite&amp;gt;&lt;/code&gt;- used for citations.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;canvas&amp;gt;&lt;/code&gt;- used for drawing on the webpage.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;audio&amp;gt;&lt;/code&gt;- to declare an audio file.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;video&amp;gt;&lt;/code&gt;- to declare a video file.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;table&amp;gt;&lt;/code&gt;- defines a table.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;textarea&amp;gt;&lt;/code&gt;- defines a multiline input box.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;time&amp;gt;&lt;/code&gt;- defines a specific time.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt;- used for client-side javascript or link to an external script. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;span&amp;gt;&lt;/code&gt;- defines a section in a document.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;meta&amp;gt;&lt;/code&gt;- defines the metadata/information about an HTML document.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;area&amp;gt;&lt;/code&gt;- defines an area inside an image map.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;base&amp;gt;&lt;/code&gt;- specifies the base URL targets in a document. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;col&amp;gt;&lt;/code&gt;- specifies the column properties for a column within a &lt;code&gt;&amp;lt;colgroup&amp;gt;&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;embed&amp;gt;&lt;/code&gt;- defines a container for an external application.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;param&amp;gt;&lt;/code&gt;- defines the parameters of an object.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;source&amp;gt;&lt;/code&gt;- declares the source for a media element.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;track&amp;gt;&lt;/code&gt;- defines text track for a media element.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;wbr&amp;gt;&lt;/code&gt;- defines a possible line-break.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;template&amp;gt;&lt;/code&gt;- defines a container for content that should be hidden when the page loads.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;summary&amp;gt;&lt;/code&gt;- defines a visible heading for a &lt;code&gt;&amp;lt;details&amp;gt;&lt;/code&gt; element.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;style&amp;gt;&lt;/code&gt;- defines style information for a document.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>i4g</category>
      <category>zuri</category>
      <category>html</category>
    </item>
    <item>
      <title>HNGi8 x14G internship</title>
      <dc:creator>Awwal Bankole</dc:creator>
      <pubDate>Mon, 16 Aug 2021 15:09:20 +0000</pubDate>
      <link>https://dev.to/lawybanx/hngi8-x14g-internship-3alb</link>
      <guid>https://dev.to/lawybanx/hngi8-x14g-internship-3alb</guid>
      <description>&lt;p&gt;Hi, I'm awwal and I am a fledgling full stack developer. I started coding a few years ago as I was struggling with finishing my final year project in unilag. I came across a program called code Lagos and decided to enroll since it was free and I had a laptop. Since then I have  been fascinated about what you could do with a computer. To me coding is a really fun way to bring life to ideas and the loads of bugs that come with it is all part of the fun. &lt;br&gt;
After the end of the program I delved into the vast resources of YouTube and aimed at making myself a self taught developer 😓...., man was that a lot headache. Nonetheless I'm proud to say that I'm a full stack developer having learnt technologies like React, Express and Nodejs.&lt;br&gt;
However, what I'll admit I lack is indeed experience building apps and providing solutions in a work environment, which is why I hope my time at this year's installment of the HNG internship helps on that regard&lt;br&gt;
Here is the link to register for the internship if you're interested : &lt;a href="https://internship.zuri.team"&gt;https://internship.zuri.team&lt;/a&gt; &lt;br&gt;
If you're a beginner at coding and you want to learn the basics and be a self taught developer, there are a lot of resources out there that can help you pursue that, both free and paid. Platforms like Udemy provide premium quality resources for a price while there are tons of free content available on YouTube.&lt;/p&gt;

&lt;p&gt;If you're are interested in starting out with web development, the basic knowledge you'll need are &lt;br&gt;
HTML: HTML is the standard markup language for documents designed to be displayed in a web browser. &lt;a href="https://youtu.be/UB1O30fR-EE"&gt;Click here to learn HTML&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Figma: Figma is a web-based graphics editing and user interface design app. You can use it to do all kinds of graphic design work from wire framing websites, designing mobile app interfaces, prototyping designs, crafting social media posts, and everything in between. &lt;a href="https://youtu.be/c9Wg6Cb_YlU"&gt;Click here to learn Figma&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;GIT: Git is software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development. &lt;a href="https://youtu.be/SWYqp7iY_Tc"&gt;Click here to learn Git&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;JavaScript: JavaScript is a scripting or programming language that allows you to implement complex features on web pages. &lt;a href="https://youtu.be/hdI2bqOjy3c"&gt;Click here to learn Javascript&lt;/a&gt; &lt;/p&gt;

</description>
      <category>webdev</category>
    </item>
    <item>
      <title>My HNG Chronicles- Debugging Timbu.com</title>
      <dc:creator>Awwal Bankole</dc:creator>
      <pubDate>Tue, 02 Apr 2019 12:04:20 +0000</pubDate>
      <link>https://dev.to/lawybanx/my-hng-chronicles-debugging-timbu-com-8hf</link>
      <guid>https://dev.to/lawybanx/my-hng-chronicles-debugging-timbu-com-8hf</guid>
      <description>&lt;p&gt;&lt;a href="https://timbu.com/"&gt;https://timbu.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Today we were instructed to look for bugs on the Timbu website as the first part of this week’s challenge to get promoted to stage two. I found the following&lt;/p&gt;

&lt;p&gt;While on the Flights page, &lt;a href="https://timbu.com/flights"&gt;https://timbu.com/flights&lt;/a&gt; I discovered that under the “Explore the World” Category that the “See More” links that where supposed to link to a page with more detailed information about the categories were non-functioning.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--jPWXLtX9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/j7vuooz386ne0sbuv4xk.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--jPWXLtX9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/j7vuooz386ne0sbuv4xk.jpg" alt="Screenshot of Bug"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Also, just below this category there was a random, out-of-place letter “n”..&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IgOEvJgx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/qpivj3alzfshufvzl9ji.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IgOEvJgx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/qpivj3alzfshufvzl9ji.png" alt="Screenshot of Bug"&gt;&lt;/a&gt;&lt;br&gt;
The About Us links at the footer of the same page were non-functioning&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--PFj82Zzq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/9wucqepehzvqsih4broi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFj82Zzq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/9wucqepehzvqsih4broi.png" alt="Screenshot of Bug"&gt;&lt;/a&gt;&lt;/p&gt;

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