Tutorials Exercises Menu
Log in

Кодтауды үйреніңіз

Mobius веб-әзірлеушілер сайтымен.


Неден Бастарыңызды Білмейсіз Бе?

HTML

The language for building web pages

Learn HTML

HTML Example:

<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Try it Yourself

CSS

The language for styling web pages

Learn CSS

CSS Example:

body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
}
Try it Yourself

JavaScript

The language for programming web pages

Learn JavaScript

JavaScript Example:

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

<script>
function myFunction() {
  let x = document.getElementById("demo");
  x.style.fontSize = "25px";
  x.style.color = "red";
}
</script>
Try it Yourself

Python

A popular programming language

Learn Python
Python Reference

Python Example:

if 5 > 2:
  print("Five is greater than two!")
Try it Yourself

SQL

A language for accessing databases

Learn SQL
SQL Reference

SQL Example:

SELECT * FROM Customers
WHERE Country='Mexico';
Try it Yourself

Code Editor

With our online code editor, you can edit code and view the result in your browser



Frontend Code Editor

Try Frontend Editor (HTML/CSS/JS)

Try Backend Editor (Python/PHP/Java/C..)

Exercises and Quizzes

Test your skills!