@@ -25,7 +25,7 @@ title: Feature list
## CSS
-```css
+```css styles.css
.feature-list {
display: flex;
diff --git a/contents/fixed-at-corner.mdx b/contents/fixed-at-corner.mdx
index 46dad48..eae4359 100644
--- a/contents/fixed-at-corner.mdx
+++ b/contents/fixed-at-corner.mdx
@@ -9,7 +9,7 @@ title: Fixed at corner
## HTML
-```html
+```html index.html
...
@@ -27,7 +27,7 @@ title: Fixed at corner
## CSS
-```css
+```css styles.css
.fixed-at-corner {
position: relative;
}
diff --git a/contents/fixed-at-side.mdx b/contents/fixed-at-side.mdx
index 6cb710e..3432125 100644
--- a/contents/fixed-at-side.mdx
+++ b/contents/fixed-at-side.mdx
@@ -9,7 +9,7 @@ title: Fixed at side
## HTML
-```html
+```html index.html
...
@@ -19,7 +19,7 @@ title: Fixed at side
## CSS
-```css
+```css styles.css
.fixed-at-side {
position: fixed;
top: 50%;
diff --git a/contents/floating-label.mdx b/contents/floating-label.mdx
index b1ff32e..c45fa21 100644
--- a/contents/floating-label.mdx
+++ b/contents/floating-label.mdx
@@ -9,7 +9,7 @@ title: Floating label
## HTML
-```html
+```html index.html
@@ -21,7 +21,7 @@ title: Floating label
## CSS
-```css
+```css styles.css
.floating-label {
border: 1px solid #d1d5db;
border-radius: 0.25rem;
@@ -115,3 +115,7 @@ placeholder of input isn't shown
```
+
+## See also
+
+- Explore some ways to [animate a floating label](https://phuoc.ng/collection/css-animation/floating-label).
diff --git a/contents/folder-structure.mdx b/contents/folder-structure.mdx
index 10b9960..7d14115 100644
--- a/contents/folder-structure.mdx
+++ b/contents/folder-structure.mdx
@@ -9,7 +9,7 @@ title: Folder structure
## HTML
-```html
+```html index.html
-
@@ -42,7 +42,7 @@ title: Folder structure
## CSS
-```css
+```css styles.css
:root {
--folder-structure-item-height: 0.5rem;
--folder-structure-item-margin-left: 2.25rem;
diff --git a/contents/full-background.mdx b/contents/full-background.mdx
index bd37419..f8d99b6 100644
--- a/contents/full-background.mdx
+++ b/contents/full-background.mdx
@@ -9,13 +9,13 @@ title: Full background
## HTML
-```html
+```html index.html
...
```
## CSS
-```css
+```css styles.css
.full-background {
/* Center the content */
align-items: center;
diff --git a/contents/full-screen-menu.mdx b/contents/full-screen-menu.mdx
index 6862e4d..ccbb478 100644
--- a/contents/full-screen-menu.mdx
+++ b/contents/full-screen-menu.mdx
@@ -9,7 +9,7 @@ title: Full screen menu
## HTML
-```html
+```html index.html