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<!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>
h1 {
color: white;
text-align: center;
}
p {
border: 1px solid;
padding: 5px;
font-size: 20px;
}
a {
color: #3f51b5;
font-size: 20px;
}
<button onclick="function_name()">Sum!</button>
<script>
function function_name() {
var a = 5;
var b = 6;
var c = a + b;
alert(c);
}
</script>
<!DOCTYPE html>
<html>
<head>
<title>This is a Page Title</title>
</head>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>