About
🙏 Sabaidee. My name is Felix and I created this website to learn HTML, showcase select skills, and learn about the world. The first lesson in HTML is printing the phrase "Hello, World!" to the World Wide Web.
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <title>Sabaidee</title>
5. </head>
6. <body>
7. <h1>Hello (Sabaidee) World!</h1>
8. </body>
9. </html>
HTML Tags explained
- <!DOCTYPE html> Specifies the standard: DOCTYPE informs the browser about the specific HTML version (like HTML5) the page is written in.
- <html> This is the HTML tag. It defines the entire structure of the document such as headings, paragraphs, lists, and tables.
- <head> This is the head tag. It instructs the web browser on how to interpret and render the page, including character sets, styling, and script execution
- <title>Sabaidee</title> This is the title tag. It appears in the tab at the top of the browser window for each open page and helps with search engines like Google.
- </head> This closes the <head> tag.
- <body>
The body tag in HTML defines the main content of an HTML document using a combination of header and paragraph tags.
- <h1>Hello (Sabaidee) World!</h1> Our first message!
- </body> This closes the <body> tag.
- </html> This closes the <html> tag.
Recap: And in the wink of an eye, we've learned a little bit of HTML and the Lao language. And in the spirit of the lesson above, I've adapted it as an homage to my Lao background, Sabaidee World!