My HTML Learning Journey 🚀
Anjaneya Kariguli shares their experience of learning HTML, highlighting the importance of practice in mastering the fundamentals. They covered various topics including document structure, links, media, tables, forms, and semantic HTML. Looking ahead, they plan to start learning CSS for webpage styling and responsive design.
- ▪Anjaneya recently completed the core fundamentals of HTML.
- ▪They focused on writing code manually and experimenting with different tags and layouts.
- ▪The biggest lesson learned was that consistency and practice matter more than speed.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3935439) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Anjaneya Kariguli Posted on May 21 My HTML Learning Journey 🚀 #frontend #webdev #development I recently completed the core fundamentals of HTML, and it has been an exciting learning experience. When I started, HTML looked simple, but while practicing I realized how important it is for building the structure of every webpage. Instead of only watching tutorials, I focused on writing code manually and experimenting with different tags and layouts.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).