Learning Progress Pt.17
In the latest update of his learning journey, Muhamed Maxhuni focused on HTML and completed several lessons on W3schools.com. He also worked on a modified version of a hangman game and completed lessons on Khan Academy. Additionally, he researched various projects while managing his time effectively between different programming tasks.
- ▪Muhamed Maxhuni started his learning session at 16:30.
- ▪He completed multiple HTML lessons on W3schools.com and practiced in VS Code.
- ▪He created a modified version of a hangman game and completed two lessons on Khan Academy.
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 === 3912611) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Muhamed Maxhuni Posted on May 23 Learning Progress Pt.17 #productivity #learning Daily learning part seventeen. Today I started at 16:30. First, I began with the HTML course on W3schools.com. I did HTML Introduction, HTML Editors, HTML Basics, HTML Elements, HTML Attributes, HTML Headings, HTML Paragraphs, HTML Styles, and HTML Formatting. To make sure I learn them correctly this time, I've made a special folder where I keep HTML files to practice in VS Code.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).