Advertisement
ujiajah1

sayhello

Aug 13th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <?php
  3. //variable saya
  4. $name="PujiErmanto";
  5. $from='Bandung-Indonesia';
  6. $website='http://younghipster.comli.com';
  7. ?>
  8. <html>
  9. <head>
  10. <title>Hello</title>
  11. <style>
  12.     h1{color:red;}
  13.     p{color:blue;}
  14.     a{color:green;}
  15.     </style>
  16.     </head>
  17.     <body>
  18.     <% echo "<h1>Hello Semua</h1>"; %>
  19.     <?= "<p>Perkenalkan"; ?>
  20. <% echo "<p>saya&nbsp=&nbsp".$name; %>
  21. <?= "<p>dari&nbsp=&nbsp;".$from; ?>
  22. <?php echo "<p>Jangan Lupa Berkunjung ke website saya</p>"; ?>
  23. <a href="<?=$website;?>">Klik Disini</a>
  24.  
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement