Advertisement
Aniket_Goku

welcome page

Jun 14th, 2021
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1. <html>
  2.     <style>
  3.         body
  4.         {
  5.             background-image:url('backgrounds/60.jpg');
  6.             background-size:100% ;
  7.             background-attachment:fixed;
  8.             backdrop-filter:blur(3px);
  9.             background-repeat:no-repeat;
  10.             margin:0;padding:0;height:150%;
  11.        
  12.         }
  13.         h1
  14.         {
  15.             background-color:black;
  16.             color:white;
  17.             font-family:supernatural knight;
  18.             font-size:50px;
  19.             text-align:center; 
  20.            
  21.         }
  22.        
  23.     </style>
  24.     <body>
  25.         <h1>TASK - 4</h1>
  26.         <br><br><br>
  27.        
  28.         <br><br><br><br>
  29.         <form >
  30.             <table align="center" cellspacing="20" width="30%">
  31.                 <tr>
  32.                     <td>
  33.                         <h1>Welcome <?php $us =$_GET['un'];
  34.                             echo $us; ?> </h1>
  35.                     </td>
  36.                 </tr>
  37.             </table>
  38.         </form>
  39.     </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement