July 28, 2026

Projects

HTML Projects

Project 1(HTML basic)
Project2(HTML Basic)
Project3(HTML Basic)

Basic of html 

<html>

<head>

<title>First webpage</title>

</head>

<body>

<h1>This is a Heading</h1>

<p>This is a paragraph</p>

</body>

</html>

CSS Projects

project1-css basic style
Project2-css basics page style
Project3-css basics page style

Javascript Projects

Project1-Javascript Basic logic program
Project2-Javascript Basic
Project3-Javascript Basic

24/10/2024(My PHP Projects)

Syntax:-

Basic PHP Syntax
A PHP script can be placed anywhere in the document.

A PHP script starts with <?php and ends with ?>

<?php

  //php code

?>

 

Example :-

(1). <?php

echo “Hello World!”;

?>

(2). <?php

ECHO “Hello World!<br>”;

echo “Hello World!<br>”;

EcHo “Hello World!<br>”;

?>

Comments in php :-

A comment in PHP code is a line that is not executed as a part of the program. Its only purpose is to be read by someone who is looking at the code.

// This is a single-line comment


# This is also a single-line comment


/* This is a

multi-line comment */

Example :-

(1). single line comment example:-

<?php

// Outputs a welcome message:

echo “Welcome Home!”;

?>

(2). Multiline comments example:-

<?php

// This is a single-line comment

# This is also a single-line comment

/* This is a

multi-line comment */

?>