Advertisement

Welcome to W3seekers

Learn Markdown Language

Start Learning Markdown »

MD Example:

# Heading level 1

## Heading level 2

This is paragraph.

This is **bold text**.

> This is blockquotes.

1. Milk
2. Orange
3. Tomato

Try this code ❯


Learn HTML Language

HyperText Markup Language

Start Learning HTML »

HTML Elements

HTML Attributes Reference

Reference Deprecated Tags

HTML Global Attributes

HTML Event Attributes

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>

Try this code ❯


Learn Mermaid

Start Learning HTML »

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]

Try this code ❯


Advertisement