Skip to content

Commit f0fe268

Browse files
authored
Update index.md
added code block code and html5 and css3 for fun
1 parent 9c67322 commit f0fe268

File tree

1 file changed

+108
-13
lines changed

1 file changed

+108
-13
lines changed

index.md

Lines changed: 108 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,72 @@
33
Welcome to my GitHub-powered Markdown adventure! 👋
44
Let’s learn and level up, one step at a time. 😎
55

6+
___
7+
8+
## 🔢 JavaScript Code Testing
9+
10+
Here’s a test snippet in JavaScript:
11+
12+
```javascript
13+
var myVar = "Hello, world!";
14+
console.log(myVar);
15+
```
16+
17+
18+
## 🧑‍💻 Bonus: Code Snippets in Different Languages
19+
20+
### 💻 C# Example
21+
22+
```csharp
23+
using System;
24+
25+
class Program
26+
{
27+
static void Main()
28+
{
29+
Console.WriteLine("Hello from C#!");
30+
}
31+
}
32+
```
33+
34+
---
35+
36+
### 🧠 Rule of Thumb with code block
37+
38+
Always:
39+
- Start a code block with: ```` ```language ````
40+
- End it with: ```` ``` ````
41+
42+
You're doing awesome — let me know if you want to try a table or checklist next!
43+
44+
45+
---
46+
## HTML5 & CSS3
47+
48+
<!DOCTYPE html>
49+
<html lang="en">
50+
<head>
51+
<meta charset="UTF-8" />
52+
<title>Hello HTML</title>
53+
</head>
54+
<body>
55+
<h1>Welcome to My Page</h1>
56+
<p>This is a paragraph.</p>
57+
</body>
58+
</html>
59+
60+
body {
61+
background-color: #f0f0f0;
62+
font-family: Arial, sans-serif;
63+
color: #333;
64+
}
65+
66+
h1 {
67+
color: #0077cc;
68+
text-align: center;
69+
}
70+
71+
672
---
773

874
## ✏️ Step 1: Headers
@@ -12,12 +78,41 @@ It helps me make my content look clean, structured, and professional — all usi
1278

1379
---
1480

15-
### 📌 What I’ve Done So Far
81+
### 📋 Step 2: My Markdown Checklist
82+
83+
- [x] Learn how to write headers
84+
- [x] Add a cool image with alt text
85+
- [x] Create a code block
86+
- [x] Format with bold and *italic*
87+
- [x] Try a checklist ✅
88+
- [x] Add a table
89+
- [x] Practice links and `inline code`
90+
91+
---
92+
93+
### 📊 Step 3: My Learning Progress Table
94+
95+
| Topic | Status | Notes |
96+
|------------------|-----------|---------------------------|
97+
| Headers | ✅ Done | Using `#`, `##`, etc. |
98+
| Images | ✅ Done | Used alt text too! |
99+
| Code Blocks | ✅ Done | JavaScript block removed |
100+
| Checklists | ✅ Done | Super useful |
101+
| Tables | ✅ Done | This one right here 👇 |
102+
| Links | ✅ Done | Check below |
103+
| Inline Code | ✅ Done | Like `console.log()` |
104+
105+
---
106+
107+
### 🌐 Step 4: Useful Link
108+
109+
Here’s a link to [GitHub's Markdown Guide](https://guides.github.com/features/mastering-markdown/) for more tips and tricks.
110+
111+
---
112+
113+
### 🔤 Step 5: Inline Code Example
16114

17-
- ✅ Learned about headers
18-
- 🔜 Bullet points
19-
- 🔜 Formatting styles
20-
- 🔜 Tables and more
115+
Sometimes you just need to show a command like `git status` or `npm install` right in the middle of a sentence — that's where `inline code` comes in handy!
21116

22117
---
23118

@@ -29,17 +124,17 @@ Here's a cool GitHub mascot just for fun:
29124

30125
---
31126

32-
## 🌟 Next Up
127+
## 🌟 What’s Next?
33128

34-
Stay tuned! I’ll be learning about:
129+
Stay tuned! I’ll be exploring:
35130

36-
- Bold and italic text
37-
- Code blocks
38-
- Links and images
39-
- Tables
40-
- Checklists
131+
- More advanced Markdown tricks
132+
- README formatting like a pro
133+
- GitHub Actions
134+
- Jekyll pages or GitHub Pages
41135

42136
---
43137

44-
_Thanks for stopping by — follow along as I build this Markdown journey!_
138+
_Thanks for stopping by — follow along as I build this Markdown journey!_
139+
_Created with ❤️ and `Markdown` magic by Codemikemike._
45140

0 commit comments

Comments
 (0)