Skip to content

Instantly share code, notes, and snippets.

@JeffreyWay
Last active October 21, 2023 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeffreyWay/2f4ea9ba7af00ee878bbff65f48cbb2a to your computer and use it in GitHub Desktop.
Save JeffreyWay/2f4ea9ba7af00ee878bbff65f48cbb2a to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
</head>
<body>
<h1>
<?php
$greeting = "Hello";
$noun = "World";
echo "$greeting $noun" . "!"
?>
</h1>
</body>
</html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
</head>
<body>
<h1>
<?php
$greeting = "Hello";
echo "$greeting Everybody!"
?>
</h1>
</body>
</html>
@MdNouroseNaimRhedoy
Copy link

`<!doctype html>

<title>1st Assignment</title>

`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment