Creating My First HTML Web Page
Creating My First HTML Web Page
By Naufal Al-Khalifa Utomo
After learning the basic concepts of HTML, I decided to try building my first simple web page. Even though it was a very small project, it was an important step in my journey learning web development.
Building a webpage helps transform theory into practice. Instead of only reading about HTML tags, I started writing them and seeing how they work directly in the browser.
The Basic Structure of an HTML Page
Every website begins with a basic HTML structure. This structure tells the browser how the webpage should be organized.
<!DOCTYPE html> <html> <head> <title>My First Web Page</title> </head> <body> <h1>Hello World</h1> <p>This is my first HTML page.</p> </body> </html>
When this code is opened in a browser, it will display a heading and a paragraph. Even though it looks very simple, it represents the beginning of understanding how websites work.
What I Learned From This Practice
From creating my first HTML page, I learned several important things:
- How browsers read HTML code
- How webpage structure is built
- The importance of proper tag placement
- How small changes in code affect the page layout
Practicing directly helped me understand coding much faster than just reading tutorials.
The Next Step in My Learning Journey
After understanding the basics of HTML, the next step is learning CSS. CSS allows developers to style web pages by adding colors, layouts, fonts, and spacing.
With CSS, a simple webpage can become much more visually appealing and structured.
In the next article, I will explore the basics of CSS and how it changes the appearance of a webpage.
Previous Article:
My Journey Learning Coding as a High School Student
Next Article:
Learning CSS Basics
Naufal Al-Khalifa Utomo
Coding • Web Development • UI/UX Design
Labels: Coding, HTML, Web Development

0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home