<?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: Melina Caroline Bernard</title>
    <description>The latest articles on DEV Community by Melina Caroline Bernard (@melina_bernard_7fce15e253).</description>
    <link>https://dev.to/melina_bernard_7fce15e253</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%2F3529843%2F8cf34425-856b-449b-b4ea-1749958bbe00.png</url>
      <title>DEV Community: Melina Caroline Bernard</title>
      <link>https://dev.to/melina_bernard_7fce15e253</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/melina_bernard_7fce15e253"/>
    <language>en</language>
    <item>
      <title>Lists - HTML</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Sat, 27 Sep 2025 15:52:25 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/lists-html-1fdf</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/lists-html-1fdf</guid>
      <description>&lt;p&gt;•List items are container tags.&lt;/p&gt;

&lt;p&gt;•A list consists of list items &lt;strong&gt;&amp;lt;li&amp;gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;•There are &lt;u&gt;2 types&lt;/u&gt; of lists&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1.Ordered lists&lt;/strong&gt; &lt;strong&gt;&amp;lt;ol&amp;gt;&lt;/strong&gt; - &lt;br&gt;
~&lt;em&gt;These show with numbers.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;~&lt;em&gt;You can use these &lt;u&gt;when the points have a certain order&lt;/u&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For example&lt;/strong&gt;👇🏻&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;ol&amp;gt;
&amp;lt;li&amp;gt; Coffee &amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt; Tea &amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt; Milk &amp;lt;/li&amp;gt;;
&amp;lt;/ol&amp;gt;

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;u&gt;Output&lt;/u&gt;&lt;/strong&gt;👇🏻&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Coffee &lt;/li&gt;
&lt;li&gt;Tea &lt;/li&gt;
&lt;li&gt;Milk &lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;strong&gt;2.Unordered lists &amp;lt;ul&amp;gt;&lt;/strong&gt; &lt;br&gt;
~&lt;em&gt;They are shown with bullet points.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;~&lt;em&gt;You can use these &lt;u&gt;when the order of the items is not important&lt;/u&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt; 👇🏻&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;ul&amp;gt;
&amp;lt;li&amp;gt; Coffee &amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt; Tea &amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt; Milk &amp;lt;/li&amp;gt;;
&amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;u&gt;Output&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;•Coffee &lt;br&gt;
•Tea &lt;br&gt;
• Milk &lt;/p&gt;

&lt;p&gt;•A list can contain &lt;u&gt;any number of items&lt;br&gt;
&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;• A list can be nested inside another&lt;/p&gt;

&lt;p&gt;• (use indentation to make your code look clean when you prefer nesting)&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;ul&amp;gt;
 &amp;lt;li&amp;gt;Coffee&amp;lt;/li&amp;gt;
 
 &amp;lt;li&amp;gt;Tea (Varieties) 
    *&amp;lt;ul&amp;gt;
      &amp;lt;li&amp;gt;Green Tea&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Black Tea&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;*
 &amp;lt;/li&amp;gt;
 &amp;lt;li&amp;gt;Milk&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;

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

&lt;/div&gt;



&lt;p&gt;💡&lt;strong&gt;Quick Tip&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;•&lt;em&gt;Each &amp;lt; li &amp;gt; tags are presented in new lines automatically&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;👇🏻&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;ol&amp;gt;
&amp;lt;li&amp;gt;Item1&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Item2&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Item3&amp;lt;/li&amp;gt;
&amp;lt;\ol&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Output&lt;/strong&gt;👇🏻&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Item1 &lt;/li&gt;
&lt;li&gt;Item2 &lt;/li&gt;
&lt;li&gt;Item3 &lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>frontend</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Links -HTML</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Sat, 27 Sep 2025 11:56:46 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/links-html-24aj</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/links-html-24aj</guid>
      <description>&lt;p&gt;•The Web wouldn’t be possible without HyperText. &lt;/p&gt;

&lt;p&gt;•HyperText is text that contains a link to another page.&lt;/p&gt;

&lt;p&gt;•Web pages are called HyperText documents because _they are connected by hyper links _&lt;/p&gt;

&lt;p&gt;•These hyper links allow users to &lt;strong&gt;&lt;em&gt;move from one page to another&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
 &amp;amp; &lt;strong&gt;&lt;em&gt;Share information across different machines and systems&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;•The anchor tag &lt;strong&gt;&amp;lt;a&amp;gt;&lt;/strong&gt; is used to create a hyperlink on a web page. &lt;/p&gt;

&lt;p&gt;•To create a link, you need "&lt;strong&gt;href&lt;/strong&gt;" to add the destination URL&lt;/p&gt;

&lt;p&gt;•&lt;strong&gt;href&lt;/strong&gt; stands for &lt;strong&gt;&lt;em&gt;HyperText reference&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;•The URL needs to be enclosed in quotes to work without errors.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Adding images - HTML</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Sat, 27 Sep 2025 10:40:59 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/adding-images-html-14k8</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/adding-images-html-14k8</guid>
      <description>&lt;p&gt;•A picture is worth a thousand words! &lt;/p&gt;

&lt;p&gt;•Web pages with images get more views, higher ranking in search results, and get shared more on social media &lt;/p&gt;

&lt;p&gt;•Images are not technically inserted into a web page, &lt;strong&gt;&lt;em&gt;they are linked.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;•&lt;strong&gt;&amp;lt; img src='URL'&amp;gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;📎The source (src) points to &lt;strong&gt;&lt;em&gt;where the image can be found&lt;/em&gt;&lt;/strong&gt;. You'll use either:&lt;/p&gt;

&lt;p&gt;1.&lt;strong&gt;An Absolute URL&lt;/strong&gt; (&lt;em&gt;a full link to an image on the internet&lt;/em&gt;).&lt;/p&gt;

&lt;p&gt;2.&lt;strong&gt;A Relative Path&lt;/strong&gt; (&lt;em&gt;the location of a local file, which is how you'll add images to your own portfolio&lt;/em&gt;).&lt;/p&gt;

&lt;p&gt;📎The image URL or path needs to be enclosed in either single or double quotes.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>frontend</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Text Formatting - HTML</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Fri, 26 Sep 2025 18:18:11 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/text-formatting-html-35da</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/text-formatting-html-35da</guid>
      <description>&lt;p&gt;•HTML formatting tags are used to &lt;em&gt;change how text is displayed&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;•These are container tags(we discussed about this in previous posts)&lt;/p&gt;

&lt;p&gt;•Formatting tags are applied to text and are nested inside elements.&lt;br&gt;
   &lt;strong&gt;Examples&lt;/strong&gt; 👇🏻&lt;br&gt;
  &amp;lt;b&amp;gt;  &amp;lt;/b&amp;gt; - This tag is used to &lt;strong&gt;bold text&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&amp;lt;i&amp;gt;  &amp;lt;/i&amp;gt; - This displays text in &lt;strong&gt;&lt;em&gt;italics&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&amp;lt;u&amp;gt;  &amp;lt;/u&amp;gt; - This tag is used to &lt;strong&gt;&lt;u&gt;underline&lt;/u&gt;&lt;/strong&gt; a text&lt;/p&gt;

&lt;p&gt;📎&lt;em&gt;Web accessibility is all about making websites more inclusive and removing barriers.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;📎&lt;em&gt;&lt;strong&gt;Screen readers&lt;/strong&gt; are programs that make the content of a web site accessible to users who visually impaired or have a learning disability.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;These tags make your website more accessible 👇🏻&lt;br&gt;
&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
The &amp;lt; &lt;strong&gt;strong &amp;gt;  &amp;lt; /strong &amp;gt;&lt;/strong&gt; tag is used to &lt;u&gt;highlight important&lt;/u&gt; texts (_same as &amp;lt;b&amp;gt;  &amp;lt;/b&amp;gt;  tag)&lt;br&gt;
_&lt;/p&gt;

&lt;p&gt;The emphasis tag &lt;strong&gt;&amp;lt;/em&amp;gt; &amp;lt; em &amp;gt;&lt;/strong&gt; is used to &lt;u&gt;define emphasized text&lt;/u&gt;. (&lt;em&gt;same as &amp;lt;i&amp;gt;  &amp;lt;/i&amp;gt; tag&lt;/em&gt;)&lt;/p&gt;

&lt;p&gt;🧩The above &lt;strong&gt;&amp;lt; strong &amp;gt;    &amp;lt; /strong &amp;gt;&lt;/strong&gt;  and &lt;strong&gt;&amp;lt;em&amp;gt; &amp;lt; /em &amp;gt;&lt;/strong&gt; tags are considered as &lt;u&gt;semantic tags.&lt;/u&gt; Which means, &lt;em&gt;they &lt;strong&gt;have a meaning&lt;/strong&gt; &amp;amp; &lt;strong&gt;can be read by the screen readers&lt;/strong&gt;&lt;/em&gt;, so that your web page becomes more accessible&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>frontend</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Fun Fact - How web pages work &amp; where the informations come from</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Fri, 26 Sep 2025 16:43:33 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/fun-fact-how-web-pages-work-where-the-informations-come-from-31e6</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/fun-fact-how-web-pages-work-where-the-informations-come-from-31e6</guid>
      <description>&lt;p&gt;•There are lot of web pages, we browse according to our needs.&lt;/p&gt;

&lt;p&gt;•Where do you think these vast amount of information in the web lives? In everyone's phone or mobile device??&lt;/p&gt;

&lt;p&gt;Definitely Not!&lt;/p&gt;

&lt;p&gt;•Here comes &lt;strong&gt;The Server&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;•What is that?&lt;br&gt;
  📎&lt;em&gt;Web servers are &lt;strong&gt;computers&lt;/strong&gt; that are &lt;strong&gt;always connected to the Internet&lt;/strong&gt; and &lt;strong&gt;continuously listening for requests of information&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;📎&lt;em&gt;&lt;u&gt;Code&lt;/u&gt;, &lt;u&gt;documents&lt;/u&gt; and &lt;u&gt;media files&lt;/u&gt; such as images and videos are put together by the browser to display the resulting web page&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>frontend</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Body tag - HTML</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Fri, 26 Sep 2025 16:11:57 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/body-tag-html-1kp3</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/body-tag-html-1kp3</guid>
      <description>&lt;p&gt;•The &amp;lt;body&amp;gt; container tag is used to &lt;strong&gt;group everything that gets displayed on a web page&lt;/strong&gt; when loaded in a browser. &lt;/p&gt;

&lt;p&gt;•&lt;u&gt;All the content elements&lt;/u&gt; that you need to display (like &lt;strong&gt;paragraphs&lt;/strong&gt;, &lt;strong&gt;headings&lt;/strong&gt;, &lt;strong&gt;buttons&lt;/strong&gt; and &lt;strong&gt;images&lt;/strong&gt;) need to be &lt;em&gt;inside the &amp;lt;body&amp;gt; container tag.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;💡&lt;strong&gt;Fun Fact&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;A web page can contain only one body element.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Body tags are needed for your page to be compatible with all web browsers.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Head tag - HTML</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Fri, 26 Sep 2025 12:00:00 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/head-tags-html-4dan</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/head-tags-html-4dan</guid>
      <description>&lt;p&gt;•The &amp;lt;head&amp;gt; container tag is used to include &lt;strong&gt;technical information&lt;/strong&gt; about the page&lt;/p&gt;

&lt;p&gt;•&lt;strong&gt;Title&lt;/strong&gt;, &lt;strong&gt;description&lt;/strong&gt; and &lt;strong&gt;keywords&lt;/strong&gt; are nested in the head tag.&lt;/p&gt;

&lt;p&gt;•You can use the &amp;lt;head&amp;gt; to help &lt;strong&gt;increase visibility&lt;/strong&gt; and &lt;strong&gt;traffic&lt;/strong&gt; from search engines like Google.&lt;/p&gt;

&lt;p&gt;•The information in the head is not displayed on the web page.&lt;/p&gt;

&lt;p&gt;•Only the title, is shown in search engine results and in the browser tab.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>frontend</category>
      <category>beginners</category>
    </item>
    <item>
      <title>What is Nesting</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Fri, 26 Sep 2025 11:26:44 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/what-is-nesting-2i1</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/what-is-nesting-2i1</guid>
      <description>&lt;p&gt;•Some tags need to be placed inside other tags.&lt;/p&gt;

&lt;p&gt;•When some HTML tags go inside other tags, this is called &lt;strong&gt;nesting&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;•For example,&lt;/u&gt; all the contents of the html are included (nested) inside &amp;lt;html&amp;gt; tag&lt;/p&gt;

&lt;p&gt;•The outer tag (&lt;strong&gt;&amp;lt;html&amp;gt;&lt;/strong&gt;,in this example), is called a &lt;strong&gt;Parent tag&lt;/strong&gt; and all the tags nested inside it are &lt;strong&gt;Child tags&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;📎&lt;strong&gt;A Golden Rule&lt;/strong&gt; &lt;br&gt;
&lt;em&gt;the last tag you open must be the first tag you close.&lt;/em&gt;&lt;br&gt;
&lt;em&gt;So, you can close the parent tag only after closing all the child tags in nesting&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;💡Fun fact&lt;/strong&gt;&lt;br&gt;
  &amp;lt;html&amp;gt;  &amp;lt;/html&amp;gt; &lt;em&gt;tag is a &lt;strong&gt;container&lt;/strong&gt; tag, which contains all the contents of html nested inside it&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>beginners</category>
      <category>frontend</category>
    </item>
    <item>
      <title>Paragraphs &amp; breaks in HTML</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Fri, 26 Sep 2025 07:43:53 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/paragraphs-breaks-in-html-4mam</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/paragraphs-breaks-in-html-4mam</guid>
      <description>&lt;p&gt;•&amp;lt;p&amp;gt;..&amp;lt;/p&amp;gt; is used to create a paragraph of text&lt;/p&gt;

&lt;p&gt;•Usually, manual breaks inside paragraph is ignored by the browser when showing the web page&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt; 👇🏻&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&amp;lt;p&amp;gt;Hey there!&lt;br&gt;
   Come learn frontend with me.&lt;br&gt;
Let's learn&lt;br&gt;
 HTML basics.&amp;lt;/p&amp;gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Eventhough I typed the paragraph in several lines,&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The output will be&lt;/strong&gt;👇🏻&lt;/p&gt;


&lt;p&gt;Hey there! Come learn frontend with me. Let's learn HTML basics.&lt;/p&gt;

&lt;p&gt;•This behavior is known as &lt;strong&gt;whitespace collapsing&lt;/strong&gt; or &lt;strong&gt;whitespace normalization&lt;/strong&gt;, where the browser treats any sequence of spaces, tabs, or line breaks as a single space.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;•To actually insert a line break in the output,&lt;/u&gt;&lt;/strong&gt; you need to use &lt;strong&gt;&amp;lt;br&amp;gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt; 👇🏻&lt;br&gt;
&lt;em&gt;&amp;lt;p&amp;gt;Hey there! &amp;lt;br&amp;gt;&lt;br&gt;
   Come learn frontend with me.&lt;br&gt;
Let's learn &amp;lt;br&amp;gt;&lt;br&gt;
 HTML basics.&amp;lt;/p&amp;gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Output&lt;/strong&gt; 👇🏻&lt;br&gt;
Hey there!&lt;br&gt;
Come learn frontend with me. Let's learn&lt;br&gt;
HTML basics.&lt;/p&gt;

&lt;p&gt;💡&lt;strong&gt;Fun Fact&lt;/strong&gt;&lt;br&gt;
&amp;lt;br&amp;gt; tag is one of the examples for empty tags.&lt;br&gt;
&lt;em&gt;Remember we discussed earlier?&lt;br&gt;
Empty tag means, they don't need a closing tag : )&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;[Container tags vs Self closing "HTML tags - container (standard) vs empty (self closing) - DEV Community" &lt;a href="https://dev.to/melina_bernard_7fce15e253/html-tags-2i53"&gt;https://dev.to/melina_bernard_7fce15e253/html-tags-2i53&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>frontend</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Comments - HTML</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Fri, 26 Sep 2025 06:54:03 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/comments-html-2a3j</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/comments-html-2a3j</guid>
      <description>&lt;p&gt;•Comments in html is used as a short description of your code&lt;/p&gt;

&lt;p&gt;•It makes your code easier to read &amp;amp; understand &lt;/p&gt;

&lt;p&gt;•It may help you in the future when you look back at what you coded &amp;amp; it's crucial when you work in groups, so that other members can understand.&lt;/p&gt;

&lt;p&gt;•it won't be visible in the web page&lt;/p&gt;

&lt;p&gt;•&amp;lt;!-- .. --&amp;gt; is used to add a comment &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>frontend</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Heading tags - HTML</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Fri, 26 Sep 2025 06:22:23 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/heading-tags-html-2f9</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/heading-tags-html-2f9</guid>
      <description>&lt;p&gt;&lt;strong&gt;•Heading tags are container tags (closing tags are must)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;•There are 6 levels of HTML tags ranging from h1 to h6&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;•h1 is the biggest&lt;/strong&gt;&lt;br&gt;
  &lt;em&gt;&amp;lt;h1&amp;gt;&lt;/em&gt; &lt;em&gt;&amp;lt;/h1&amp;gt;&lt;/em&gt; &lt;br&gt;
  &lt;em&gt;&amp;lt;h2&amp;gt;&lt;/em&gt; &lt;em&gt;&amp;lt;/h2&amp;gt;&lt;/em&gt;&lt;br&gt;
             .&lt;br&gt;
             . &lt;br&gt;
  &lt;em&gt;&amp;lt;h6&amp;gt;&lt;/em&gt; &lt;em&gt;&amp;lt;/h6&amp;gt;&lt;/em&gt;     &lt;/p&gt;

&lt;p&gt;👉🏻&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;

&lt;h1&gt; heading 1 &lt;/h1&gt;


&lt;h2&gt; heading 2 &lt;/h2&gt;
&lt;br&gt;
   &lt;h6&gt; heading 6 &lt;/h6&gt;

&lt;p&gt;💡&lt;strong&gt;Quick Tip&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;A page should &lt;strong&gt;only ever have one &amp;lt;h1&amp;gt; tag&lt;/strong&gt;. This tag is reserved &lt;strong&gt;for the main title&lt;/strong&gt; of the page (e.g., your portfolio name or the title of your blog post).&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>frontend</category>
      <category>beginners</category>
    </item>
    <item>
      <title>HTML tags - container (standard) vs empty (self closing)</title>
      <dc:creator>Melina Caroline Bernard</dc:creator>
      <pubDate>Fri, 26 Sep 2025 06:00:20 +0000</pubDate>
      <link>https://dev.to/melina_bernard_7fce15e253/html-tags-2i53</link>
      <guid>https://dev.to/melina_bernard_7fce15e253/html-tags-2i53</guid>
      <description>&lt;p&gt;&lt;strong&gt;•HTML code is based on tags.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;•Tags are used to add elements to a web page&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;•Elements are surrounded by angular brackets &amp;lt;&amp;gt; to make it a tag&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉🏻&lt;strong&gt;Example&lt;/strong&gt; &lt;br&gt;
     &lt;em&gt;Button - &amp;lt;button&amp;gt;&lt;br&gt;
     Image  - &amp;lt;img&amp;gt;&lt;br&gt;
  Paragraph text - &amp;lt;p&amp;gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;•&lt;strong&gt;There are 2 types of tags&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;1.container tags &lt;/u&gt;- it should contain opening tags as well as closing tags &lt;strong&gt;&amp;lt;&amp;gt;..&amp;lt;/&amp;gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉🏻&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
     &lt;em&gt;&amp;lt;button&amp;gt; &amp;lt;/button&amp;gt;&lt;br&gt;
     &amp;lt;p&amp;gt; &amp;lt;/p&amp;gt;&lt;br&gt;
     &amp;lt;a&amp;gt; &amp;lt;/a&amp;gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;2.Empty tags &lt;/u&gt; - Also known as self closing tags.These don't need a closing tag.&lt;/p&gt;

&lt;p&gt;👉🏻&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
       &lt;em&gt;&amp;lt;img&amp;gt;&lt;br&gt;
        &amp;lt;hr&amp;gt;&lt;br&gt;
        &amp;lt;br&amp;gt;&lt;/em&gt;  &lt;/p&gt;

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