<?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: Angie Walls</title>
    <description>The latest articles on Forem by Angie Walls (@angie_aaparedes).</description>
    <link>https://forem.com/angie_aaparedes</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%2F498769%2F20f63c33-ddf3-408d-9b1a-54b6a662d0bd.jpg</url>
      <title>Forem: Angie Walls</title>
      <link>https://forem.com/angie_aaparedes</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/angie_aaparedes"/>
    <language>en</language>
    <item>
      <title>My existential problem as a beginner "nav" = "a"?</title>
      <dc:creator>Angie Walls</dc:creator>
      <pubDate>Tue, 17 Nov 2020 00:40:38 +0000</pubDate>
      <link>https://forem.com/angie_aaparedes/my-existential-problem-as-a-beginner-nav-a-14hk</link>
      <guid>https://forem.com/angie_aaparedes/my-existential-problem-as-a-beginner-nav-a-14hk</guid>
      <description>&lt;p&gt;When I heard that the "nav" element was used to navigate and previously I have learned that the "a" element was used to navigate between pages I was confused, I thought that they both served the same purpose or had the same function, then I investigated in FreeCampCode and MND and I could see that they are definitely not the same.&lt;br&gt;
Nav is used to allocate a space or section on your web page to navigate and nested within nav is an "a" which is the link that makes the jump. You can find more information &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav"&gt;&lt;code&gt;nav&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;e.g.&lt;br&gt;
&lt;/p&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;nav&amp;gt;&lt;/span&gt;       
   &lt;span class="nt"&gt;&amp;lt;ul&amp;gt;&lt;/span&gt;
       &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&amp;lt;a&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"Https://mytoping"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;menu toping &lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;           
       &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&amp;lt;a&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"Https://mycupon"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;menu coupon &lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/span&gt;              
   &lt;span class="nt"&gt;&amp;lt;/ul&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/nav&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The structure of the "a" element should at least have the "href" attribute, they always go in the opening tag followed by the "=" sign and the assigned value.&lt;br&gt;
The value can be a URL for external links or an id of another html element to create internal links&lt;/p&gt;

&lt;p&gt;e.g.&lt;br&gt;
&lt;/p&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;a&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"http://AnyLink"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;any page&lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Basically "nav" is the box that nests the element "a" which are the internal or external links that make the jump to somewhere&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Exploring "freeCodeCamp"</title>
      <dc:creator>Angie Walls</dc:creator>
      <pubDate>Wed, 28 Oct 2020 20:21:53 +0000</pubDate>
      <link>https://forem.com/angie_aaparedes/exploring-freecodecamp-3ojp</link>
      <guid>https://forem.com/angie_aaparedes/exploring-freecodecamp-3ojp</guid>
      <description>&lt;p&gt;&lt;span&gt;Photo by &lt;a href="https://unsplash.com/@altumcode?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;AltumCode&lt;/a&gt; on &lt;a href="https://unsplash.com/s/photos/programming?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;This time, I wanted to practice some HTML and someone recommended freeCodeCamp, it has interesting topics about Basic HTML for beginner and I learned three of them&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Comments&lt;/strong&gt; This is a very important topic to reference sections making notes without affecting output. &lt;/p&gt;

&lt;p&gt;The HTML is &amp;lt;!----&amp;gt; and the used this way:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="c"&gt;&amp;lt;!--This note is not seen in the output--&amp;gt;&lt;/span&gt;&lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;Some title&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is the link I used to learn these HTML elements&lt;br&gt;
&lt;a href="https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/uncomment-html"&gt;freeCodeCamp&amp;gt;Basic&amp;gt;Uncomment&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Descriptive HTML tags&lt;/strong&gt; The HTML elements that help your code to be more descriptive and at the same time they help to better sectioning are: &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav"&gt;nav&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section"&gt;section&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article"&gt;article&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside"&gt;aside&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements"&gt;h1..h6&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header"&gt;header&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer"&gt;footer&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address"&gt;address&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main"&gt;main&lt;/a&gt;&lt;br&gt;
 e.g. "main"&lt;br&gt;
&lt;/p&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;main&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;Nice Title&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;Some pretty text ❤ &lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;main/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is the link I used to learn these HTML elements&lt;br&gt;
&lt;a href="https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements"&gt;freeCodeCamp&amp;gt;Basic&amp;gt;Elements&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Add Images to your website&lt;/strong&gt;&lt;br&gt;
One of the HTML elements I studied to add images from URLs and from local folder is:&lt;br&gt;
&lt;/p&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;img&lt;/span&gt; &lt;span class="na"&gt;scr=&lt;/span&gt;&lt;span class="s"&gt;"URL"&lt;/span&gt; &lt;span class="na"&gt;Alt=&lt;/span&gt;&lt;span class="s"&gt;"image's description"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is the link I used to learn these HTML elements&lt;br&gt;
&lt;a href="https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/add-images-to-your-website"&gt;freeCodeCamp&amp;gt;Basic&amp;gt;Add Images&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Any feedback is welcomed&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Desde Cero </title>
      <dc:creator>Angie Walls</dc:creator>
      <pubDate>Mon, 26 Oct 2020 00:49:53 +0000</pubDate>
      <link>https://forem.com/angie_aaparedes/desde-cero-2dk5</link>
      <guid>https://forem.com/angie_aaparedes/desde-cero-2dk5</guid>
      <description>&lt;p&gt;Soy totalmente nueva en estos temas, mi carrera es Administrador Financiero y me dedico al análisis comercial.&lt;br&gt;
A raíz de ver todo lo que se puede hacer solo con HTML decidí comenzar a aprender sobre esto.&lt;/p&gt;

&lt;p&gt;Entiendo que HTML es un lenguaje que estructura el contenido de las páginas por medio de etiquetas y atributos.&lt;br&gt;
Las etiquetas están divididas por su funcionalidad, existe una semántica y hay un orden específico para estructurar un esqueleto &lt;/p&gt;

&lt;p&gt;Aquí mi primer intento de estructura&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Jgx3ZDiL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/234fv83zlgg3xtflzvjb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Jgx3ZDiL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/234fv83zlgg3xtflzvjb.png" alt="primer codigo"&gt;&lt;/a&gt;&lt;br&gt;
Este primer intento fue muy sencillo, aun así, si hubiera tenido la idea de cómo quería que se viera antes de comenzar la estructura, sería más fácil.&lt;br&gt;
Pude observar que es importante que las líneas sean claras para que se pueda apreciar fácilmente el orden del esqueleto y tener menos complicaciones a la hora de revisar si las etiquetas estaban cerradas o bien colocadas.&lt;/p&gt;

&lt;p&gt;Cualquier comentario es bienvenido! 😊&lt;/p&gt;

&lt;p&gt;Nota: Imagen de portada tomada de: &lt;a href="https://www.deustoformacion.com/blog/programacion-diseno-web/etiquetas-basicas-html-que-debes-conocer"&gt;deustoformacion&lt;/a&gt;&lt;/p&gt;

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