<?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>Forem: Renato Junior</title>
    <description>The latest articles on Forem by Renato Junior (@okande-dev).</description>
    <link>https://forem.com/okande-dev</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%2F2028777%2Fce7c8b6c-adb0-4585-8bad-b85f138bb0b2.png</url>
      <title>Forem: Renato Junior</title>
      <link>https://forem.com/okande-dev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/okande-dev"/>
    <language>en</language>
    <item>
      <title>Understand Tables: HTML in 180 Seconds - Episode 5</title>
      <dc:creator>Renato Junior</dc:creator>
      <pubDate>Tue, 17 Sep 2024 00:43:55 +0000</pubDate>
      <link>https://forem.com/okande-dev/understand-tables-html-in-180-seconds-episode-5-1oaj</link>
      <guid>https://forem.com/okande-dev/understand-tables-html-in-180-seconds-episode-5-1oaj</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/rd8fCd5KZho"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Hello, I'm Renato Junior, and you're here to learn HTML in 180-second videos. In this article, you'll learn the basics of creating tables in HTML.&lt;/p&gt;

&lt;p&gt;To understand how tables work, you first need to know how a table is structured.&lt;/p&gt;

&lt;p&gt;A table is made up of rows, and each row contains multiple pieces of data.&lt;/p&gt;

&lt;p&gt;In the following image, you'll see Row 1 and Row 2.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F57oj15tfz5iko3e1ftwh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F57oj15tfz5iko3e1ftwh.png" alt="Rows in HTML Table" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Inside Row 1, we have two data points: Data 1 and Data 2. Similarly, in Row 2, we have two more data points: Data 3 and Data 4.&lt;/p&gt;

&lt;h2&gt;
  
  
  Ready to build a table in HTML?
&lt;/h2&gt;

&lt;p&gt;We’ll start by using the "table" tag to indicate that we’re creating a table. Now that we’re inside the table, we’ll create the first row, Row 1, using the "tr" tag, which stands for "table row." Inside Row 1, we’ll create the first data cell using the "td" tag, which stands for "table data," and then the second data cell using the same "td" tag.&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;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;title&amp;gt; Page title &amp;lt;/title&amp;gt;
    &amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
        &amp;lt;table border="1"&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;td&amp;gt; Data 1 &amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt; Data 2 &amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;

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

&lt;/div&gt;



&lt;p&gt;At this point, your table will look like this.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwkae34mzje6i18tg6r0w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwkae34mzje6i18tg6r0w.png" alt="Table with a row in HTML" width="574" height="221"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To create a new row, just add another "tr" tag and insert two more "td" tags for the data cells.&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;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;title&amp;gt; Page title &amp;lt;/title&amp;gt;
    &amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
        &amp;lt;table border="1"&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;td&amp;gt; Data 1 &amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt; Data 2 &amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;td&amp;gt; Data 3 &amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt; Data 4 &amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
        &amp;lt;/table&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your table will now look like this.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F13mmegui586ypyxklnoo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F13mmegui586ypyxklnoo.png" alt="Table in HTML" width="625" height="357"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now it’s time for your exercise. Look at Image 1 and Image 2, and try to replicate them in HTML. It’s important that you attempt this challenge because that’s the best way to reinforce what you've learned so far. The solution to this challenge will be revealed at the end of this article.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;HTML Table Exercise 1&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkrc8h8see3gsnnmen9px.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkrc8h8see3gsnnmen9px.png" alt="HTML Tables Exercise 1" width="779" height="287"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;HTML Table Exercise 2&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcgveuyn0m4czbkcc2q17.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcgveuyn0m4czbkcc2q17.png" alt="HTML Tables Exercise 1" width="800" height="410"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In the next video, you’ll learn what attributes are and how they work with HTML tags.&lt;/p&gt;

&lt;h3&gt;
  
  
  Homework Answer
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;HTML Table Exercise 1 - Using TR and TD tags
&lt;/li&gt;
&lt;/ul&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&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;title&amp;gt;Exercise 1&amp;lt;/title&amp;gt;
    &amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
        &amp;lt;table border="1"&amp;gt;
        &amp;lt;tr&amp;gt;
            &amp;lt;td&amp;gt;Row 1, Column 1&amp;lt;/td&amp;gt;
            &amp;lt;td&amp;gt;Row 1, Column 2&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
        &amp;lt;tr&amp;gt;
            &amp;lt;td&amp;gt;Row 2, Column 1&amp;lt;/td&amp;gt;
            &amp;lt;td&amp;gt;Row 2, Column 2&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
        &amp;lt;tr&amp;gt;
            &amp;lt;td&amp;gt;Row 3, Column 1&amp;lt;/td&amp;gt;
            &amp;lt;td&amp;gt;Row 3, Column 2&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
    &amp;lt;/table&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;HTML Table Exercise 2 - Using TR and TD tags
&lt;/li&gt;
&lt;/ul&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&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;title&amp;gt;Exercise 2&amp;lt;/title&amp;gt;
    &amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
        &amp;lt;h2&amp;gt;Tic-Tac-Toe Game Board&amp;lt;/h2&amp;gt;
        &amp;lt;table border="1"&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;td&amp;gt;X&amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt;O&amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt;X&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;td&amp;gt;O&amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt;X&amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt;O&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;td&amp;gt;O&amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt;X&amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
        &amp;lt;/table&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/html
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>html</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Text Formatting: HTML in 180 Seconds - Episode 4</title>
      <dc:creator>Renato Junior</dc:creator>
      <pubDate>Mon, 16 Sep 2024 14:25:29 +0000</pubDate>
      <link>https://forem.com/okande-dev/html-in-180-seconds-episode-4-basic-text-formatting-2iam</link>
      <guid>https://forem.com/okande-dev/html-in-180-seconds-episode-4-basic-text-formatting-2iam</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/RBfpwgmP80g"&gt;
&lt;/iframe&gt;
&lt;br&gt;
Hello, I’m Renato Junior, and you’re here to learn HTML in 180-second videos! In this video, you’re going to learn some basic text formatting in HTML. But first, a quick reminder: in the previous lesson, you learned the basic structure of HTML, so make sure you have that handy for today's class!&lt;/p&gt;

&lt;p&gt;As I mentioned before, HTML is a markup language for text, which means there are so many cool ways to style your content! You can add italics, make text bold, create paragraphs, or even build headings. Let’s dive in!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4yeh1k5cl132xby6alky.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4yeh1k5cl132xby6alky.png" alt="Text formatting in HTML" width="800" height="678"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Today’s example is all about headings. With the H tag followed by a number (1 to 6), you can define up to six levels of headings! You’ll see this in action with h1, h2, h3, h4, h5, and h6. Easy, right?&lt;/p&gt;

&lt;p&gt;Now, for paragraphs! You’ll use the P tag to mark a paragraph. Simple enough! Check out how, with the STRONG tag, your text appears bold, and with the I tag, your text will be italicized. Pretty neat, huh?&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;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;title&amp;gt; The page title &amp;lt;/title&amp;gt;
    &amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
        &amp;lt;h1&amp;gt;Here it is a Header 1&amp;lt;/h1&amp;gt;
        &amp;lt;h2&amp;gt;Here it is a Header 2&amp;lt;/h2&amp;gt;
        &amp;lt;h3&amp;gt;Here it is a Header 3&amp;lt;/h3&amp;gt;
        &amp;lt;h4&amp;gt;Here it is a Header 4&amp;lt;/h4&amp;gt;
        &amp;lt;h5&amp;gt;Here it is a Header 5&amp;lt;/h5&amp;gt;
        &amp;lt;h6&amp;gt;Here it is a Header 6&amp;lt;/h6&amp;gt;

        &amp;lt;p&amp;gt; This is a simple paragraph with &amp;lt;strong&amp;gt;strong&amp;lt;/strong&amp;gt; text in &amp;lt;i&amp;gt;Italic&amp;lt;/i&amp;gt;&amp;lt;/p&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Time for some homework! Take a look at the following picture and try to recreate it in HTML. It’s super important to give this challenge a shot—practice makes perfect, after all!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9ptt6121zyjzgds5fgqb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9ptt6121zyjzgds5fgqb.png" alt="Star Wars HTML Exercise" width="800" height="454"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the next video, you’ll learn all about tables in HTML! Can’t wait to see you there!&lt;/p&gt;

&lt;h2&gt;
  
  
  Homework Answer
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb0y4iz51fajaqskomza3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb0y4iz51fajaqskomza3.png" alt="Star Wars HTML Homework" width="800" height="210"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Basic HTML Structure: HTML in 180 Seconds - Episode 3</title>
      <dc:creator>Renato Junior</dc:creator>
      <pubDate>Fri, 13 Sep 2024 01:46:38 +0000</pubDate>
      <link>https://forem.com/okande-dev/html-in-180-seconds-episode-3-basic-structure-no0</link>
      <guid>https://forem.com/okande-dev/html-in-180-seconds-episode-3-basic-structure-no0</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/XM5-HnqZ1k4"&gt;
&lt;/iframe&gt;
&lt;br&gt;
Hello, I'm Renato Junior, and you're here to learn HTML in 180-second videos. In this video, you will learn the basic structure of HTML.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5ml414dixofcbv889ane.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5ml414dixofcbv889ane.png" alt="Use the right name index.html" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;By convention, the homepage of a website in HTML should be named "index.html". To create this file, open Notepad++, click on “File,” and then on “Save As.” In the window that opens, choose the folder where you want to save the file and set the name as "index.html". Make sure the file is saved with this exact name to ensure the homepage functions correctly.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff0w4d7bzrdk4a9jqocwu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff0w4d7bzrdk4a9jqocwu.png" alt="Click on " width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8asopynotqi6eqqsqxim.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8asopynotqi6eqqsqxim.png" alt="Click in " width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F07f4od1vf3y86ufpxcnw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F07f4od1vf3y86ufpxcnw.png" alt="Save the file as index.html" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Once the file is saved with the correct name, you can now add the basic HTML structure.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb6ap83dmzcqrx89todgd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb6ap83dmzcqrx89todgd.png" alt="Image description" width="800" height="356"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You'll notice that every HTML page begins with a document type declaration, followed by the opening of the HTML tags. Inside the HTML tags, you will find two main sections: the head and the body.&lt;/p&gt;

&lt;p&gt;Conventionally, inside the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; tag, you'll find only metadata, such as information, settings, and other elements that generally do not appear as visible content on the page. The &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; section, on the other hand, contains everything that is visible to users, like text, images, links, and other elements that make up the page's interface.&lt;/p&gt;

&lt;p&gt;In this example, within the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt;, we configure the page title, which will appear to the user outside of the main content.&lt;/p&gt;

&lt;p&gt;Inside the &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; is where the main content visible to the user will be displayed. To see if your changes have worked, simply click the save button. Go to the folder where you saved the file and double-click to open it in your browser.&lt;/p&gt;

&lt;p&gt;And there you have it, you just created your first HTML code.&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;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;title&amp;gt; The page title &amp;lt;/title&amp;gt;
    &amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
        Here it is the web page content
    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In the next lesson, you'll learn some new tags for text formatting.&lt;/p&gt;

</description>
      <category>html</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>What is HTML? HTML in 180 Seconds - Episode 2</title>
      <dc:creator>Renato Junior</dc:creator>
      <pubDate>Fri, 13 Sep 2024 01:40:01 +0000</pubDate>
      <link>https://forem.com/okande-dev/html-in-180-seconds-episode-2-what-is-html-2oa0</link>
      <guid>https://forem.com/okande-dev/html-in-180-seconds-episode-2-what-is-html-2oa0</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/nJehlwQBEHg"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Hello, I'm Renato Junior, and you're here to learn HTML in 180-second videos. In this video, you'll learn what HTML is and how you can code in HTML.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5c4ys3ukbhnoyjyytdwo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5c4ys3ukbhnoyjyytdwo.png" alt="What is HTML? Any requirements?" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You've probably visited Google's, YouTube's, or Amazon's websites at some point in your life. These amazing sites you see on the internet are built using various technologies, and HTML is one of them.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3obteilct7byfj4s5v6c.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3obteilct7byfj4s5v6c.png" alt="HTML is one of the technologies used to develop a Website, nowadays there are many different technologies such as CSS and JS for instance" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;HTML stands for HyperText Markup Language. It's like a big instruction book that tells the computer how to display things on the screen. For example, it tells where to place text, images, videos, and everything else you see when you open a website.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdkbs6brv4xzixuq6fzuh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdkbs6brv4xzixuq6fzuh.png" alt="It's like a big instruction book that tells the computer how to display things on the screen." width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;HTML uses special words called tags. Think of tags like Lego pieces. Each tag has a specific function, such as creating a title, a paragraph, or even inserting an image. And you'll combine all these pieces to build a website.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyfxrqodfryxie47lmr2a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyfxrqodfryxie47lmr2a.png" alt="The button tag" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you're still a bit confused about what you can do with HTML, don't worry. Once you start practicing, you'll definitely understand.&lt;/p&gt;

&lt;p&gt;So, how do you start coding in HTML? It's very simple, all you need is a text editor.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwacfpe2ssj2dfhjp2v2d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwacfpe2ssj2dfhjp2v2d.png" alt="You can edit HTML with any text editor in your computer, but please, do not use Word for that" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can use Notepad++, VS Code, or even your computer's basic Notepad to write HTML.&lt;/p&gt;

&lt;p&gt;We'll start with Notepad++. If you want to know how to download it or another text editor, check this out:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How install Notepad++? &lt;a href="https://notepad-plus-plus.org/downloads/" rel="noopener noreferrer"&gt;https://notepad-plus-plus.org/downloads/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;How Install VSCode? &lt;a href="https://code.visualstudio.com/download" rel="noopener noreferrer"&gt;https://code.visualstudio.com/download&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In the next video, you'll write your first HTML file.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>tutorial</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Get Started with HTML in 180 Seconds - Episode 1</title>
      <dc:creator>Renato Junior</dc:creator>
      <pubDate>Fri, 13 Sep 2024 01:28:19 +0000</pubDate>
      <link>https://forem.com/okande-dev/html-in-180-seconds-episode-1-welcome-1p42</link>
      <guid>https://forem.com/okande-dev/html-in-180-seconds-episode-1-welcome-1p42</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/E8xiXDINpPE"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Hello, my name is Renato Junior and you are here to learn HTML in 180 seconds. I’ve been in the tech industry since 2016. Over the years, I’ve worked with a wide range of technologies, and I currently identify as a full stack or full cycle developer.&lt;/p&gt;

&lt;p&gt;I’ve contributed to projects for companies in Brazil, the United States, Canada, and Europe, using a variety of tools and languages. Some of the key technologies I’ve worked with include PHP, NodeJS, TypeScript, PostgreSQL, MySQL, HTML, Python, Kubernetes, React, and many others that would take more than 180 seconds to list.&lt;/p&gt;

&lt;p&gt;My goal is to teach HTML in a straightforward and practical way, with short videos of around 180 seconds, so you can learn the essentials without wasting time.&lt;/p&gt;

&lt;p&gt;Creating, editing, and delivering high-quality content in this format requires dedication. Therefore, it’s possible that not all the content is available yet. So, be sure to subscribe to the channel to keep up with all the new videos coming your way!&lt;/p&gt;

&lt;p&gt;Additionally, I’d like to explain why I chose to use Artificial Intelligence to generate the voices in my videos. This decision helps me optimize production time without compromising the clarity of the message. I assure you that you’ll be able to understand everything perfectly.&lt;/p&gt;

&lt;p&gt;So, let’s dive into the content!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>tutorial</category>
      <category>html</category>
    </item>
  </channel>
</rss>
