WebTheStuff - Web Development Tutorial

Welcome to the WebTheStuff Tutorial and Example Portal! I'm provide easy and best tutorials and Example on various technologies. like HTML, CSS, JAVASCRIPT, PHP, LARAVEL, REACT JS, AJEX, JQUERY, NODE, ANGULAR, API, I hope it will help you a lot.

Contact

HTML Example

Edit it yourself
<!DOCTYPE html>
<html>
<head>
  <title>This is a Page Title</title>
</head>
<body>

  <h1>This is a Heading</h1>
  <p>This is a paragraph.</p>
  <a>This is a div.</a>

</body>
</html>

CSS Example

Edit it yourself

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

p {
    border: 1px solid;
    padding: 5px;
    font-size: 20px;
}

a {
    color: #3f51b5;
    font-size: 20px;
}

Javascript Example

Edit it yourself

<button onclick="function_name()">Sum!</button>

<script>
function function_name() {
    var a = 5;
    var b = 6;
    var c = a + b;
    alert(c);
}

</script>

PHP Example

Edit it yourself
<!DOCTYPE html>
<html>
<head>
  <title>This is a Page Title</title>
</head>
<body>

<?php
echo "My first PHP script!";
?>

</body>
</html>

Recent Articles