<?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: NKNEXUL TECH</title>
    <description>The latest articles on DEV Community by NKNEXUL TECH (@nknexul_tech_45e05d43d440).</description>
    <link>https://dev.to/nknexul_tech_45e05d43d440</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4027812%2F258384ba-d103-4eb1-b90c-991f50a727a8.jpg</url>
      <title>DEV Community: NKNEXUL TECH</title>
      <link>https://dev.to/nknexul_tech_45e05d43d440</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nknexul_tech_45e05d43d440"/>
    <language>en</language>
    <item>
      <title>--- title: Day 1: Starting My Web Dev Journey on a Tablet description: Learning HTML from scratch learning on my phone using my tablet and Acode. ---</title>
      <dc:creator>NKNEXUL TECH</dc:creator>
      <pubDate>Tue, 14 Jul 2026 07:35:46 +0000</pubDate>
      <link>https://dev.to/nknexul_tech_45e05d43d440/-title-day-1-starting-my-web-dev-journey-on-a-tablet-description-learning-html-from-scratch-379</link>
      <guid>https://dev.to/nknexul_tech_45e05d43d440/-title-day-1-starting-my-web-dev-journey-on-a-tablet-description-learning-html-from-scratch-379</guid>
      <description>&lt;p&gt;Hi everyone! I'm a 16-year-old tech enthusiast, and I am officially starting my journey to master web development and game development. Eventually, I want to explore other areas of software engineering too, but today is all about the foundations.&lt;/p&gt;

&lt;p&gt;What makes my journey a bit unique is my setup: I don't have a traditional laptop right now, so I am learning to code completely on my phone and code on my  tablet using an app called &lt;strong&gt;Acode&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I'm Joining the Summer Bug Smash
&lt;/h2&gt;

&lt;p&gt;I am joining this challenge right from Day 1 of my coding journey. Even though I don't know much yet, I want to document the mistakes I make, the bugs I encounter, and how I fix them on a mobile device.&lt;/p&gt;

&lt;h2&gt;
  
  
  My First Milestone: HTML
&lt;/h2&gt;

&lt;p&gt;Today, I learned the basics of HTML structure. Here is the exact code I wrote for my homepage (&lt;code&gt;index.html&lt;/code&gt;) inside Acode:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
html
&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;title&amp;gt;My First Blog Post&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;h1&amp;gt;Day 1: Web Dev on a Tablet&amp;lt;/h1&amp;gt;
    &amp;lt;p&amp;gt;I officially started learning web development today!&amp;lt;/p&amp;gt;&amp;lt;h2&amp;gt;What I Learnt&amp;lt;/h2&amp;gt;&amp;lt;Some of the things I learnt today were:&amp;lt;/p&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;HTML code controls the structure of a webpage&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;HTML tags are used to add elements to a webpage &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Elements like button and paragraph require container tags while elements like images and line break only require empty tags&amp;lt;li&amp;gt;Container tags consist of both opening and closing tags.&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Some HTML tags known as Semantic tags&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;h3&amp;gt;What I Built&amp;lt;/h3&amp;gt;&amp;lt;p&amp;gt;I started with my first project which is my portfolio website&amp;lt;/p&amp;gt;&amp;lt;h4&amp;gt;Looking Ahead&amp;lt;/h4&amp;gt;&amp;lt;p&amp;gt;Next I want to learn more on HTML and dive deeper to get a better understanding of HTML and later learn CSS and JavaScript to style and make my webpage more interactive&amp;lt;p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>bugsmash</category>
      <category>beginners</category>
      <category>webdev</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>--- title: Day 1: Starting My Web Dev Journey published: true description: Learning HTML from scratch ---</title>
      <dc:creator>NKNEXUL TECH</dc:creator>
      <pubDate>Tue, 14 Jul 2026 06:49:17 +0000</pubDate>
      <link>https://dev.to/nknexul_tech_45e05d43d440/-title-day-1-starting-my-web-dev-journey-published-true-description-learning-html-from-eg1</link>
      <guid>https://dev.to/nknexul_tech_45e05d43d440/-title-day-1-starting-my-web-dev-journey-published-true-description-learning-html-from-eg1</guid>
      <description>&lt;p&gt;Hi everyone! I'm a tech enthusiast currently mastering web development and game development. I am building my foundation from scratch,learning on my phone with Sololearn and Mimo while writing my code completely on a tablet using an app called &lt;strong&gt;Acode&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I'm Doing This
&lt;/h2&gt;

&lt;p&gt;I want to learn how to turn big ideas into reality, one line of code at a time. I'm starting with the absolute basics of the web: HTML.&lt;/p&gt;

&lt;h2&gt;
  
  
  My First HTML Project
&lt;/h2&gt;

&lt;p&gt;Today, I built a multi-page setup right on my tablet. Here is the structure of my homepage (&lt;code&gt;index.html&lt;/code&gt;):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;html&lt;/span&gt; &lt;span class="na"&gt;lang=&lt;/span&gt;&lt;span class="s"&gt;"en"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;title&amp;gt;&lt;/span&gt;My First Blog Post&lt;span class="nt"&gt;&amp;lt;/title&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;Day 1: Starting My Journey To Become A Web Developer&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;I officially started learning web development today!&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&amp;lt;h3&amp;gt;&lt;/span&gt;What I Learnt&lt;span class="nt"&gt;&amp;lt;/h3&amp;gt;&amp;lt;Some&lt;/span&gt; &lt;span class="na"&gt;of&lt;/span&gt; &lt;span class="na"&gt;the&lt;/span&gt; &lt;span class="na"&gt;things&lt;/span&gt; &lt;span class="na"&gt;I&lt;/span&gt; &lt;span class="na"&gt;learnt&lt;/span&gt; &lt;span class="na"&gt;today&lt;/span&gt; &lt;span class="na"&gt;were:&lt;/span&gt;&lt;span class="err"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="na"&gt;p&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&lt;/span&gt;HTML code controls the structure of a webpage&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&lt;/span&gt;HTML tags are used to add elements to a webpage &lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&lt;/span&gt;Elements like button and paragraph require container tags while elements like images and line break only require empty tags&lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;Container tags consist of both opening and closing tags.&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&lt;/span&gt;Some HTML tags known as Semantic tags&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;h4&amp;gt;&lt;/span&gt;What I Built&lt;span class="nt"&gt;&amp;lt;/h4&amp;gt;&amp;lt;p&amp;gt;&lt;/span&gt;I started with my first project which is my portfolio website&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&amp;lt;h5&amp;gt;&lt;/span&gt;Looking Ahead&lt;span class="nt"&gt;&amp;lt;/h5&amp;gt;&amp;lt;p&amp;gt;&lt;/span&gt;Next I want to learn more on HTML and dive deeper to get a better understanding of HTML and later learn CSS and JavaScript to style and make my webpage more interactive&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/html&amp;gt;&lt;/span&gt;```

                        What's Next?
​My next immediate goal is to learn more about HTML and to learn CSS so I can start styling these pages and making them look awesome. After that, I'll be diving into JavaScript and starting my first simple game development projects.
​I'm excited to document my progress here as I grow from a beginner into a software developer. If you have any tips for learning on a mobile device, let me know in the comments!
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>codenewbie</category>
    </item>
  </channel>
</rss>
