Skip to content

Instantly share code, notes, and snippets.

@iamtheindian
Created June 13, 2020 18:19
Show Gist options
  • Save iamtheindian/1fb4dad2cc519d08a06e4b9df91f1891 to your computer and use it in GitHub Desktop.
Save iamtheindian/1fb4dad2cc519d08a06e4b9df91f1891 to your computer and use it in GitHub Desktop.
<html>
<head>
<title> MY FIRST WEBPAGE </title>
</head>
<style>
body {
background-color: #E6E6FA;
}
</style>
<body>
<pre>
<?php
$filepath=`cat /var/www/html/domain_name.txt`;
echo "<h2>PHP is Fun!</h2>";
echo "Hello world!<br>";
echo "I'm about to learn PHP!<br>";
echo "This ", "image ", "is ", "get ", "by cloudfront disrtibution domain_name<br>";
echo "The Domain name is ${filepath} <br>";
echo "<img src='https://${filepath}/MBM.png' height=100 width=100 />";
?>
</pre>
<p><a href="https://www.linkedin.com/in/rahul-bairwa-6b0552198">Visit My LinkedIn Profile!</a></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment