Unlock your potential
Learn new things with ground tutorial
You will find more than 1500 quality tutorials here
Learn to Code
Get started on the world's easiest site
Are you a beginner? Start from here
Learn HTML
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus
Code
Preview
Code
<!DOCTYPE html>
<html>
<head>
  <title>Basic Web Page</title>
</head>
<body>
 <!– Used to display heading content –>
 <h1>Welcome to Ground Tutorial</h1>
 <!– Used to display paragrapg content –>
 <p>HTML stands for HyperText Markup Language.</p>
</body>
</html>
Preview
Welcome to Ground Tutorial
HTML stands for HyperText Markup Language.
Code
Preview
Code
body {
background-color: rgb(221, 177, 136);
}
.main {
text-align: center;
}
.GFG {
color: #009900;
font-size: 50px;
font-weight: bold;
}
Preview
Ground Tutorial
Learn CSS
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus
Learn JavaScript
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus
Code
Preview
Code
 let age = prompt(‘Your age?’, 18);
switch (age) {
 case 18:
// the result of prompt is a string, not a number
  alert(“Won’t work”);
  break;
 case “18”:
  alert(“This works!”);
  break;
 default:
  alert(“Any value not equal to one above”);
}
Preview
Code
Preview
Code
<!DOCTYPE html>
<html lang=“en”>
<body> Â
<?php
$a = 0;
while ($a <=4) {
  echo “<br> This Value of a is:”;
    echo $a;
  $a++;
}
?>
</body>
</html>
Preview
This Value of a is:0
This Value of a is:1
This Value of a is:2
This Value of a is:3
This Value of a is:4
Â
Learn PHP
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus
Learn Argular JS
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus,