Hyper Text Markup Language

Learn More

HTML

<!doctype html>	
	<html>
		<head>
			<title>Welcome to PHPDocs.com</title>
		</head>
		<body>
			<h1>This is an H1 Heading</h1>
		</body>
	</html>

CSS


<style>
	body {
	background-color: lightgreen;
	}

	h1 {
	color: white;
	text-align: center;
	}
</style>
							

Cascade Style Sheet

Learn More

Pre Processor Hyper Text

Learn More

PHP


							
<?php
	//Welcome to PHP 
	$a=50;
	$b=30;
	echo "Total=".($a+$b);
?>
							

SQL


SELECT 
		ID,Name,Address,Contact,Email
FROM
		Customer
WHERE 
		City='Sargodha'
ORDER BY 
		Name ASC
							

Structured Query Language

Learn More