My Blog Post Title
By Ko Min ·
Article content here. This is the main body of the blog post. It can have multiple paragraphs.
More content goes here...
<div id="header"> <div id="nav">...</div> </div> <div id="content"> <div id="article">...</div> </div> <div id="footer">...</div>
<header> <nav>...</nav> </header> <main> <article>...</article> </main> <footer>...</footer>
<body>
<header>
<h1>Logo</h1>
<nav>
<ul>
<li><a>Home</a></li>
<li><a>About</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Featured</h2>
<article>Post 1</article>
<article>Post 2</article>
</section>
<aside>Sidebar</aside>
</main>
<footer>
<p>© 2024</p>
</footer>
</body>
| Tag | ဘာကိုကိုယ်စားပြုတယ် | Example |
|---|---|---|
<header> | Page ၊ section header — logo, nav | Page top, article header |
<nav> | Navigation links group | Menu, breadcrumb, pagination |
<main> | Page ရဲ့ primary content | Page တစ်ခုမှာ တစ်ခုပဲ |
<section> | Thematic group of content | Features, About, Contact |
<article> | Independent, reusable content | Blog post, news, comment |
<aside> | Sidebar / tangentially related | Related posts, ads, bio |
<footer> | Page ၊ section footer | Copyright, links, contact |
<figure> | Self-contained content | Image + caption |
<figcaption> | figure ရဲ့ caption | Image description |
<time> | Date/time | <time datetime="2024-01-01"> |
<address> | Contact info | Email, address, phone |
<details> | Expandable section | FAQ, accordion |
<summary> | details ရဲ့ heading | Click to expand |
<mark> | Highlighted text | Search result highlight |
<article>
<header>
<h2>My Blog Post Title</h2>
<p>
By <strong>Ko Min</strong> ·
<time datetime="2024-06-01">
June 1, 2024
</time>
</p>
</header>
<p>Article content here...</p>
<p>More content...</p>
<footer>
<p>Tags: HTML, CSS, Web</p>
</footer>
</article>
By Ko Min ·
Article content here. This is the main body of the blog post. It can have multiple paragraphs.
More content goes here...
<details>
<summary>
❓ HTML ဆိုတာ ဘာလဲ?
</summary>
<p>
HyperText Markup Language.
Web page ရဲ့ structure
ဆောက်ဖို့ သုံးတဲ့ language
</p>
</details>
HyperText Markup Language. Web page ရဲ့ structure ဆောက်ဖို့ သုံးတဲ့ language
Cascading Style Sheets. HTML ကို လှပအောင် style လုပ်ဖို့ language
<!DOCTYPE html>
<html lang="my">
<head>
<meta charset="UTF-8">
<title>My Website</title>
</head>
<body>
<header>
<h1>🚀 My Website</h1>
<nav>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/contact">Contact</a>
</nav>
</header>
<main>
<section id="hero">
<h2>Welcome!</h2>
<p>Best website ever.</p>
</section>
<section id="blog">
<h2>Latest Posts</h2>
<article>
<h3>Post 1</h3>
<p>Content...</p>
</article>
</section>
<aside>
<h3>About Us</h3>
<p>Sidebar content.</p>
</aside>
</main>
<footer>
<address>Email: hello@example.com</address>
<p>© 2024 My Website</p>
</footer>
</body>
</html>
🎉 HTML Lessons အကုန် ပြီးပြီ!
HTML ကို မောင်းနှင်ပြီ! ဆက်ပြီး CSS → JavaScript သင်ပါ
← HTML 05 | HTML Lessons Complete! ✅