Full Stack Camp
145 subscribers
8 photos
16 files
89 links
Fullstack Camp | Learn. Build. Launch.
Welcome to the ultimate tech adventure!
Join us for a hands-on journey through HTML, CSS, JavaScript, React, Node.js, Express & MongoDB β€” all in one place.
Download Telegram
πŸ“š Week 1 Day 5: Final HTML Lesson
Semantic HTML, Meta Tags, Accessibility, Best Practices
━━━━━━━━━━━━━━━━━━
🌟 Why This Lesson?
By now, you know how to structure pages with:
➀ Headings
➀ Paragraphs
➀ Forms, Tables, Divs, Media Now, let’s focus on writing cleaner, more organized, and more professional HTML code using:
- Semantic HTML
- Meta tags
- Accessibility (A11y) basics
- Best practices
━━━━━━━━━━━━━━━━━━━━
βœ… 1️⃣ What Is Semantic HTML?
Semantic = Meaningful.
Semantic HTML uses tags that describe their purpose. Instead of just using <div> everywhere, we now use:
- <header> β†’ Top of the page: logo, menu
- <nav> β†’ Navigation links
- <main> β†’ Main content
- <section> β†’ A specific group of content
- <article> β†’ Independent content like blog posts
- <aside> β†’ Sidebar content
- <footer> β†’ Bottom section: contact, copyright
🎯 Why Use It?
- Improves SEO (Google loves it!)
- Improves accessibility for screen readers
- Makes your code easier to read
━━━━━━━━━━━━━━━━━━━
βœ… 2️⃣ Real-World Example Layout

<html>
<head>
       <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
       <title>Betelhem's Blog</title>
</head>
<body>
        <header>
                <h1>Betelhem’s Blog</h1>
                <nav>
                     <a href="#">Home</a>
                     <a href="#">About</a>
                     <a href="#">Contact</a>
                 </nav>
        </header>
       <main>
               <article>
                      <h2>My First Blog Post</h2>
                     <p>Today, I learned Semantic HTML!</p>
              </article>
              <aside>
                   <h3>Quick Links</h3>
                   <ul>
                         <li><a href="#">HTML Tips</a></li>
                         <li><a href="#">CSS Basics</a></li> 
                  </ul>
           </aside>
      </main>
      <footer>
               <p>&copy; 2025 Betelhem. All rights reserved.</p>
      </footer>
</body>
</html>

━━━━━━━━━━━━━━━━━━━
βœ… 3️⃣ What Are Meta Tags?
Meta tags go inside the <head> to give the browser information about your page.
Essential meta tags:
- <meta charset="UTF-8"> β†’ Supports Amharic, Tigrinya, all languages
- <meta name="viewport" content="width=device-width, initial-scale=1.0"> β†’ Makes page responsive
- <meta name="description" content="Learn web development step by step.">
━━━━━━━━━━━━━━━━━━━
βœ… 4️⃣ Accessibility Basics (A11y)
➀ alt attribute on images: <img src="injera.jpg" alt="Traditional Ethiopian Injera Plate">
➀ Use <label> for form inputs: <label for="email">Email:</label> <input type="email" id="email">
➀ Don’t rely only on color for important information
━━━━━━━━━━━━━━━━━━━
βœ… 5️⃣ HTML Entities Special symbols written as codes:
- &lt; = <
- &gt; = >
- &copy; = Β©
- &amp; = &
━━━━━━━━━━━━━━━━━━
βœ… 6️⃣ HTML Comments
Write notes for yourself or other developers:
<!-- This is a comment. It doesn’t show on the page. -->
━━━━━━━━━━━━━━━━━━
βœ… 7️⃣ Best Practices Review
➺Use semantic tags instead of too many <div>s
➺Indent your code properly
➺ Always write alt text for images
➺ Keep your file names clear: ➀ about.html, contact.html 
━━━━━━━━━━━━━━━━━━

#Week1 #Day5 #Html #SemanticHtml #lesson
More challenges comingg before proceeding to Css. are you ready??
βœ… Steps to Follow When Coding with HTML

1️⃣ List the Common Sections First
Before opening your editor, think about what most pages usually have:

Header: Title, logo, menu

Navigation (Nav): Links to different parts

Main Content: Text, images, tables, forms

Footer: Β© 2025, contact info, terms and conditions


πŸ‘‰ Writing this down helps you organize your thoughts.


---

2️⃣ Make a Simple Structure Sketch

Take a paper or digital note

Draw rough boxes showing where things will go:
➀ Top = Header
➀ Middle = Main Content
➀ Bottom = Footer


πŸ’‘ This helps you see the layout before coding.


---

3️⃣ Sort and Prepare Your Content
Decide what text, images, tables, forms, or links you'll include:

Which headings?

Which paragraphs?

Will there be a form or table?

Where will images go?


πŸ“Œ This keeps things clear instead of just guessing while coding.


---

4️⃣ Start Writing Your HTML Code

Open VS Code, TrebEdit, or any text editor

Build your page using correct HTML structure:
➀ Write semantic tags like <header>, <main>, <footer>
➀ Add content step by step



---

5️⃣ Check and Debug

Open your .html file in a browser

Make sure everything shows up correctly

Fix missing tags, typos, or broken links/images


βœ… Bonus Tip:

Keep saving your file as you work to avoid losing progress
#Html #experiences
πŸ”₯πŸ”₯ Project 1
πŸ“’ Final HTML Practice Challenges Before Wrapping Up!

🎯 Your Task:  Build the following challenges using all the HTML tags and methods we’ve learned so far.
You can even add extra things using any tag or method we might not have mentioned directly β€” creativity is welcome!

βœ… Challenge 1: Restaurant Web Page 🍽️
What to Include:

➑️Restaurant name and logo (header)
➑️Menu table with:
➀ Food item, price, ingredients, availability
➑️Images of dishes (use alt text)
➑️Restaurant branches:
location, opening hours, contact numbers
➑️Upcoming events or offers:
special nights, discounts
➑️Contact form for booking or feedback
➑️Footer: Address, social links, copyright

πŸ’‘ Don’t forget: Use lists for menus too (ul or ol), add navigation links, semantic tags like <section>, <nav>, <footer>!

βœ… Challenge 2: Book Store Catalog πŸ“š

What to Include:

➲Store name and logo
➲Divide content into clear sections using headings:
      ➀ Fiction
      ➀ Science
      ➀ Biographies
      ➀ Newspaper & Magazines
➲For each section:
       ➀ Book cover image
       ➀ Title, author, price (in table)
       ➀ Short description
➲Opening and closing times table
➲Contact form or order request form

πŸ’‘ Bonus: Include a small β€œabout us” section and use <div> and <span> where helpful!

βœ… Challenge 3: Scholarship Application Page πŸŽ“

What to Include:

βž₯University or organization name and logo
βž₯Section describing the university/organization (mission, vision, departments)
βž₯List of available scholarships:
       ➀ Types, benefits, duration
βž₯Requirements list:
        ➀ GPA, documents, deadlines
βž₯Application form:
       ➀ Name, birth date, education background
       ➀ Attach documents field (file input)
       ➀ Checkbox for agreement to terms
       ➀ Submit button

πŸ’‘ Bonus: Add tables to show scholarship comparison or eligibility.

βœ… Important Notes for All Challenges:
➀ Use:
     βž›<header>, <footer>, <nav>, <main>, <section>
     βž›<table>, <ul>, <ol>, <form>, <input>, <textarea>, <button>
     βž›Images <img>, videos <video>, audio <audio>
    βž›  if useful <div>, <span>, class and id attributes

➀ Use any other tags or elements we learned: even things like <abbr>, <hr>, <br>.

βœ… When You’re Done:

Share your work (screenshot or code) in the group!
Invite your friends to join the channel and learn with us.
✌️Stay well and get ready for our next topic: CSS Styling!

#Week1 #Html #project #project1
Use this code for now for your image's size to decrease. Put it before <body>. You can change the width to your preferences.

<style>
    img {
    width: 50px;
    height: auto;
}
</style>
ο»Ώ
βœ…Week 1 HTML Review Exercise

#Week1 #Html #review
2. Which attribute is used to open a link in a new browser tab?
Anonymous Quiz
0%
A) open="new"
43%
B) href="_blank"
50%
C) target="_blank"
7%
D) window="newtab"
3. What is the correct order of tags to create a basic HTML page?
Anonymous Quiz
0%
A) <html>, <body>, <head>
0%
B) <head>, <html>, <body>
100%
C) <html>, <head>, <body>
0%
D) <body>, <head>, <html>
4. How can you make a numbered list in HTML?
Anonymous Quiz
0%
A) <list>
87%
B) <ol>
0%
C) <ul>
13%
D) <li>
5. What does <td> stand for in HTML tables?
Anonymous Quiz
14%
A) Table Division
71%
B) Table Data
7%
C) Table Description
7%
D) Table Design
6. Which tag is used to embed a video in an HTML page?
Anonymous Quiz
93%
A) <video>
0%
B) <media>
7%
C) <embed>
0%
D) <file>
8. To merge two or more cells in a table horizontally, you use:
Anonymous Quiz
29%
A) rowspan
29%
B) colspan
29%
C) cellmerge
14%
D) merge
9. Which attribute is used to identify a unique element on a page?
Anonymous Quiz
15%
A) class
0%
B) type
85%
C) id
0%
D) key