Skip to content

Commit c502e29

Browse files
authored
Merge pull request #70 from pphatdev/static
New Blog: ហ្នឹងមែនៗ កំពត!! 😂
2 parents 42bcaaf + d3ebaa1 commit c502e29

33 files changed

Lines changed: 803 additions & 608 deletions

File tree

content/posts/07-03-2026-kampot/index.mdx

Lines changed: 126 additions & 0 deletions
Large diffs are not rendered by default.

content/posts/08-03-2026-kep/index.mdx

Lines changed: 329 additions & 0 deletions
Large diffs are not rendered by default.

content/posts/basic-html-tutorial/index.md renamed to content/posts/basic-html-tutorial/index.mdx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ slug: "basic-html-tutorial"
44
description: "Learn the fundamentals of HTML with this comprehensive beginner's guide. Covers document structure, common tags, links, images, and lists to get you started with web development."
55
tags: ["css", "design"]
66
authors:
7-
-
7+
-
88
name: "PPhat DEv"
99
profile: "https://github.com/pphatdev.png"
1010
url: "https://pphat.top"
1111
thumbnail: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d"
12-
published: true
12+
published: false
1313
createdAt: "2025-04-03T16:45:00.000Z"
1414
updatedAt: "2025-05-26T18:42:43.907Z"
1515
---
@@ -22,13 +22,13 @@ Welcome! This tutorial will introduce you to the basics of HTML (HyperText Marku
2222

2323
## **Table of Contents**
2424

25-
1. [What is HTML?](https://github.com/copilot/c/c5f9b6c1-3bab-44bb-a40b-542ceb2d5e03#what-is-html)
26-
1. [HTML Document Structure](https://github.com/copilot/c/c5f9b6c1-3bab-44bb-a40b-542ceb2d5e03#html-document-structure)
27-
1. [Common HTML Tags](https://github.com/copilot/c/c5f9b6c1-3bab-44bb-a40b-542ceb2d5e03#common-html-tags)
28-
1. [Creating Links and Images](https://github.com/copilot/c/c5f9b6c1-3bab-44bb-a40b-542ceb2d5e03#creating-links-and-images)
29-
1. [Lists in HTML](https://github.com/copilot/c/c5f9b6c1-3bab-44bb-a40b-542ceb2d5e03#lists-in-html)
30-
1. [Adding Comments](https://github.com/copilot/c/c5f9b6c1-3bab-44bb-a40b-542ceb2d5e03#adding-comments)
31-
1. [Conclusion](https://github.com/copilot/c/c5f9b6c1-3bab-44bb-a40b-542ceb2d5e03#conclusion)
25+
1. [What is HTML?](#what-is-html)
26+
1. [HTML Document Structure](#html-document-structure)
27+
1. [Common HTML Tags](#common-html-tags)
28+
1. [Creating Links and Images](#creating-links-and-images)
29+
1. [Lists in HTML](#lists-in-html)
30+
1. [Adding Comments](#adding-comments)
31+
1. [Conclusion](#conclusion)
3232

3333
---
3434

@@ -42,7 +42,7 @@ HTML stands for **HyperText Markup Language**. It is used to create the structur
4242

4343
Every HTML document has a basic structure:
4444

45-
```typescript
45+
```html
4646
<!DOCTYPE html>
4747
<html>
4848
<head>
@@ -78,15 +78,15 @@ Here are some essential HTML tags:
7878

7979
To link to another page, use the `<a>` tag:
8080

81-
```typescript
81+
```html
8282
<a href="https://www.example.com">Visit Example.com</a>
8383
```
8484

8585
### **Images**
8686

8787
To display an image, use the `<img>` tag:
8888

89-
```typescript
89+
```html
9090
<img src="https://www.example.com/image.jpg" alt="Description">
9191
```
9292

@@ -99,7 +99,7 @@ To display an image, use the `<img>` tag:
9999

100100
### **Unordered List**
101101

102-
```typescript
102+
```html
103103
<ul>
104104
<li>Item One</li>
105105
<li>Item Two</li>
@@ -108,7 +108,7 @@ To display an image, use the `<img>` tag:
108108

109109
### **Ordered List**
110110

111-
```typescript
111+
```html
112112
<ol>
113113
<li>First</li>
114114
<li>Second</li>
@@ -121,7 +121,7 @@ To display an image, use the `<img>` tag:
121121

122122
Comments are not displayed in the browser. They are useful for notes in your code:
123123

124-
```typescript
124+
```html
125125
<!-- This is a comment -->
126126
```
127127

content/posts/building-rest-apis-nodejs/index.md

Lines changed: 0 additions & 72 deletions
This file was deleted.

content/posts/css-flexbox-complete-guide/index.md

Lines changed: 0 additions & 46 deletions
This file was deleted.
3.57 MB
Loading

content/posts/heading-levels-test/index.md renamed to content/posts/example-heading-levels/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: "Heading Levels Test - H1 to H6"
3-
slug: "heading-levels-test"
3+
slug: "example-heading-levels"
44
description: "A comprehensive test of all six heading levels in HTML, demonstrating proper typography hierarchy, spacing, and design principles for accessible and readable content structure."
55
tags: ["typography", "headings", "testing"]
66
authors:
77
-
88
name: "PPhat DEv"
99
profile: "https://github.com/pphatdev.png"
1010
url: "https://pphat.top"
11-
thumbnail: "https://images.unsplash.com/photo-1586953208448-b95a79798f07"
12-
published: true
11+
thumbnail: "/api/post?slug=example-heading-levels&asset=cover.jpg"
12+
published: false
1313
createdAt: "2025-05-26T12:30:00.000Z"
1414
---
1515

content/posts/git-workflow-best-practices/index.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

content/posts/javascript-testing-with-jest/index.md

Lines changed: 0 additions & 71 deletions
This file was deleted.

content/posts/modern-javascript-es6-features/index.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)