MD

Markdown

Learn Markdown

HTML Example:

# Heading level 1

## Heading level 2

This is paragraph.

This is **bold text**.

> This is blockquotes.

1. Milk
2. Orange
3. Tomato



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>



HTML Example:

body {
  background-color: green;
}

h1 {
  background: red;
  text-align: center;
}

p {
  color: yellow;
}



JS

JavaScript

Learn JavaScript

Example

<!DOCTYPE html>
<html>
<body>

<p id="demo">Hello World!</p>

<button onclick="myFunction()">Click Me!</button>

<script>
function myFunction() {
  document.getElementById("demo").innerHTML = "Hello JavaScript!";
}
</script>
</body>
</html>