কোড লেখা শেখো

বাংলা ভাষায় কোডিং শেখো বিশ্বের সবচেয়ে বড় ওয়েব ডেভেলপার সাইটের সাথে।

এখনই শুরু হোক জার্নিটা!

HTML Example:

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

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

</body>
</html>

CSS

ওয়েব পেজের ডিজাইন বা রূপ দেওয়ার ভাষা

পড়ে পড়ে শেখা ভিডিও দেখে শেখা গুরুত্বপূর্ণ প্রপার্টি লিস্ট

CSS Example:

body {
  background-color: lightblue;
}

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

p {
  font-family: verdana;
}

JavaScript

ওয়েব পেজের কার্যক্ষমতা যোগ করার ভাষা

পড়ে পড়ে শেখা ভিডিও দেখে শেখা জাভাস্ক্রিপ্ট ও DOM নির্দেশিকা

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>