<?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: Jade</title>
    <description>The latest articles on DEV Community by Jade (@jade0x).</description>
    <link>https://dev.to/jade0x</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%2F1060365%2F47b49d99-7a22-442f-ac34-76f6daed7400.png</url>
      <title>DEV Community: Jade</title>
      <link>https://dev.to/jade0x</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jade0x"/>
    <language>en</language>
    <item>
      <title>Codedex.io Project 1 - HTML</title>
      <dc:creator>Jade</dc:creator>
      <pubDate>Tue, 25 Jun 2024 14:59:45 +0000</pubDate>
      <link>https://dev.to/jade0x/codedexio-project-1-html-2i4n</link>
      <guid>https://dev.to/jade0x/codedexio-project-1-html-2i4n</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hiya!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Documenting the journey! Here is my first project with Codedex program for HTML.&lt;/p&gt;

&lt;h2&gt;
  
  
  📝 The Project
&lt;/h2&gt;

&lt;p&gt;I created a restaurant menu webpage using HTML. Here are the guidelines:&lt;/p&gt;

&lt;h3&gt;
  
  
  Final Project
&lt;/h3&gt;

&lt;p&gt;Congratulations on finishing all of the chapters in The Origins I: HTML! Now let’s use the skills we’ve gained throughout the course to build out a fun Restaurant Menu website.&lt;/p&gt;

&lt;h4&gt;
  
  
  Restaurant Menu
&lt;/h4&gt;

&lt;p&gt;In this Final Project, you'll create a page of a full fledged restaurant menu that includes a form for placing an order!&lt;/p&gt;

&lt;p&gt;Create a new file called restaurant_menu.html.&lt;/p&gt;

&lt;p&gt;You can be as creative as you want with the name and menu items for the restaurant; it can be real or fictional. However, you should include the following:&lt;/p&gt;

&lt;p&gt;The HTML file should be properly structured (Hint: start with &amp;lt;!DOCTYPE html&amp;gt;).&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;A &lt;code&gt;title&lt;/code&gt; element with the restaurant name should be included in the &lt;/p&gt; element.&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A &lt;code&gt;header&lt;/code&gt; section that features:&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;An image with an id of "header-img".&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A &lt;code&gt;h1&lt;/code&gt; heading element with the name of the restaurant.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A navigation section with two headings for "#menu" and "#order-form".&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A main section for the menu and order form, featuring:&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Two sections, each with a &lt;code&gt;h2&lt;/code&gt; heading that says "Menu" and "Place Your Order".&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The "Menu" section should have at least three  elements for the menu items that use the following elements:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;An &lt;code&gt;img&lt;/code&gt; image element.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A &lt;code&gt;h3&lt;/code&gt; element for the name of the menu item.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A &lt;code&gt;p&lt;/code&gt; paragraph element that briefly describes the item (1-2 sentences) and includes price information (italicized).&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The "Place Your Order" section must include a &lt;code&gt;form&lt;/code&gt; element with the following inputs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Number inputs for each menu item (make sure to validate input with a minimum of 0).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Radio and/or checkbox inputs for things like sides and add-ons.&lt;br&gt;
At least one  element for one of the items (for special requests).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A submit input that says "Go To Checkout".&lt;br&gt;
Note: Make sure to include a  element for each  element.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A footer that includes a &lt;code&gt;p&lt;/code&gt; paragraph element that reads "Made with love by " followed by your Codédex username.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can view the project here:&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/winx33/embed/zYQaQLo?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  🧠 What I Learned
&lt;/h2&gt;

&lt;p&gt;This project helped me grasp several HTML concepts:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Proper use of semantic elements like &lt;code&gt;&amp;lt;section&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;article&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Creating forms with various input types&lt;/li&gt;
&lt;li&gt;The importance of explicit labelling in forms&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A key learning point was about form labels. Initially, I used implicit labelling, but thanks to feedback, I learned about the preferred explicit labelling method. You can see an example here: [&lt;a href="https://www.codedex.io/@intelagense/label-demo"&gt;https://www.codedex.io/@intelagense/label-demo&lt;/a&gt;]&lt;/p&gt;

&lt;h2&gt;
  
  
  🌱 Challenges and Growth
&lt;/h2&gt;

&lt;p&gt;The main challenge I faced was with form labels. I really appreciated the feedback and break down I was given, which helped immensely with my understanding.&lt;/p&gt;

&lt;p&gt;It's amazing how much a small change can improve accessibility and user experience!&lt;/p&gt;

&lt;h2&gt;
  
  
  ⏭️ Next Steps
&lt;/h2&gt;

&lt;p&gt;I've already completed the CSS course, so my next step is to submit a new project of a personal website, with styling.&lt;/p&gt;

&lt;p&gt;It is probably way to early to say this, but as  much as I thought I would like front-end so unleash some creativity, I am not actually loving the idea of it. At this point in time. We shall see!&lt;/p&gt;

&lt;h2&gt;
  
  
  🤔 Your Thoughts?
&lt;/h2&gt;

&lt;p&gt;I'd love to hear your feedback on this project. If you have any suggestions for improvement or questions about my learning process, please feel free to comment below.&lt;/p&gt;

</description>
      <category>learning</category>
      <category>html</category>
      <category>coding</category>
    </item>
  </channel>
</rss>
