Web page တစ်ခု ဘယ်လို ဆောက်ရမလဲ — Tags, Structure, Links, Forms အကုန်
DOCTYPE, html, head, body — Web page ရဲ့ အရိုးခံ structure
Headings h1-h6, paragraphs, bold, italic, ordered & unordered lists
Anchor tags href, target, images src, alt, relative vs absolute paths
table, thead, tbody, tr, th, td — data ကို table ပုံစံ ပြနည်း
form, input types, button, select, textarea, label — User data ရယူနည်း
header, nav, main, section, article, footer — meaningful structure
<!DOCTYPE html>
<html lang="en">
<head>...</head>
<body>...</body>
<h1> to <h6> headings
<p> paragraph
<strong> bold
<em> italic
<ul> unordered
<ol> ordered
<li> list item
<dl> definition list
<a href="url">
target="_blank"
<img src="file.jpg"
alt="description">
<table>
<thead><tr><th>
<tbody><tr><td>
colspan / rowspan
<form action method>
<input type="text">
<button type="submit">
<select><option>
<header> <nav>
<main> <section>
<article> <aside>
<footer>
<meta charset="UTF-8">
<meta name="viewport">
<title>Page Title</title>
<link rel="stylesheet">