HTML JAVA Python GK SEO Full Form HTML2 CSS JAVASCRIPT SQL PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS
     ❯   

W3 బడి

With the world s largest web developer site

వెలుగునిస్తుంది.. బడిలో నేర్చుకున్న అక్షరం


Not Sure Where To Begin?

HTML

The language for building web pages

Learn HTML Video Tutorial HTML References

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>
Try it Yourself

CSS

The language for styling web pages

Learn CSS CSS References Get Certified

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 References Get Certified

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 References Get Certified

Python Example:

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

SQL

A language for accessing databases

Learn SQL SQL References Get Certified

SQL Example:

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

PHP

A web server programming language

jQuery

A JS library for developing web pages

Java

A programming language

C++

A programming language

W3.CSS

A CSS framework for faster and better responsive web pages

Bootstrap

A CSS framework for designing better web pages