Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <?php
- //variable saya
- $name="PujiErmanto";
- $from='Bandung-Indonesia';
- $website='http://younghipster.comli.com';
- ?>
- <html>
- <head>
- <title>Hello</title>
- <style>
- h1{color:red;}
- p{color:blue;}
- a{color:green;}
- </style>
- </head>
- <body>
- <% echo "<h1>Hello Semua</h1>"; %>
- <?= "<p>Perkenalkan"; ?>
- <% echo "<p>saya = ".$name; %>
- <?= "<p>dari = ".$from; ?>
- <?php echo "<p>Jangan Lupa Berkunjung ke website saya</p>"; ?>
- <a href="<?=$website;?>">Klik Disini</a>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement