Semantic HTML
I learned to use meaningful tags instead of just div. This makes my code cleaner and accessibility-friendly.
Example Code:
<header>
<nav>
<ul>...</ul>
</nav>
</header>
HTML & CSS Learning Journey
I learned to use meaningful tags instead of just div. This makes my code cleaner and accessibility-friendly.
Example Code:
<header>
<nav>
<ul>...</ul>
</nav>
</header>
To fix layout issues from A1, I implemented CSS Grid. I used the grid-column property to create the "Featured" card layout.
Example Code:
/* Mix-Layout Logic */
.card-featured {
grid-column: 1 / -1;
display: flex;
}
I utilized various industry-standard tools and resources to build this responsive website.
alt text.styles.css. Moved all inline styles to this external file to fix the issues mentioned in teacher's feedback.@media queries to switch from 1 column to 2 columns on desktop.script.js. Now it alerts users if they forget to type their email./blog directory using Softaculous. Customized the theme to match my style.