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.
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 Acode.
Why I'm Joining the Summer Bug Smash
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.
My First Milestone: HTML
Today, I learned the basics of HTML structure. Here is the exact code I wrote for my homepage (index.html) inside Acode:
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My First Blog Post</title>
</head>
<body>
<h1>Day 1: Web Dev on a Tablet</h1>
<p>I officially started learning web development today!</p><h2>What I Learnt</h2><Some of the things I learnt today were:</p><ul><li>HTML code controls the structure of a webpage</li><li>HTML tags are used to add elements to a webpage </li><li>Elements like button and paragraph require container tags while elements like images and line break only require empty tags<li>Container tags consist of both opening and closing tags.</li><li>Some HTML tags known as Semantic tags</li></ul><h3>What I Built</h3><p>I started with my first project which is my portfolio website</p><h4>Looking Ahead</h4><p>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<p>
</body>
</html>
Top comments (0)