Welcome to W3seekers
Learn Markdown Language
MD Example:
# Heading level 1
## Heading level 2
This is paragraph.
This is **bold text**.
> This is blockquotes.
1. Milk
2. Orange
3. Tomato
Learn HTML Language
HyperText Markup Language
HTML Example:
<!DOCTYPE html>
<html>
<title>This is title of the page.</title>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Learn Mermaid
Mermaid is a JavaScript diagramming and charting tool that uses a Markdown-inspired syntax to create diagrams from text. Its main goal is to enable easy, code-driven diagrams so documentation stays up-to-date with development. For example, rather than editing a static image, you write a short definition like:
Mermaid Example
graph LR
A[Start] --> B{Decision}
B -->|Yes| C[Result 1]
B -->|No| D[Result 2]