Created
June 13, 2020 18:19
-
-
Save iamtheindian/1fb4dad2cc519d08a06e4b9df91f1891 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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