Advertisement
Guest User

Sec-Contact

a guest
Dec 14th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.83 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Contact</title>
  6.     <script type="text/javascript" language="JavaScript">
  7.                   function clickedAbout()
  8.             {window.location = 'About.html'}
  9.         function clickedHome()
  10.         {window.location='Home.html'}
  11.        
  12.              </script>
  13.     <style>
  14.       body
  15.         {margin: 0px;padding: 0px}
  16.        
  17.         .header
  18.         {
  19.             background-color:antiquewhite;
  20.             text-align: right;
  21.             padding: 30px;
  22.         }
  23.         .bttn
  24.         {
  25.             background-color: lightskyblue;
  26.             border: 10px solid skyblue;
  27.             padding: 5px;
  28.             margin: 5px;
  29.             cursor: pointer;
  30.             display:inline-block;
  31.             font-size: 20px;
  32.             border-radius: 50px
  33.            
  34.         }
  35.         .bttn:hover{background-color: blue}
  36.         .cont
  37.         {
  38.             text-align: left;
  39.             position: absolute;
  40.             left: 50px;
  41.             font-size: 35px;
  42.         }
  43.         label {margin-bottom:30px}
  44.         input {margin-bottom:30px}
  45.         fieldset{border-color: cornflowerblue;border-radius: 10%;padding: 20px;position: absolute;right: 35% ;bottom: 25%}
  46.     </style>
  47. </head>
  48.  <body>
  49.        
  50.     <div class="header">  
  51.     <label class="cont">Contact</label>
  52.     <button class="bttn" onclick="clickedHome()">Home</button>
  53.     <button class="bttn" onclick="clickedAbout()">About Us</button>
  54.     <button class="bttn" style="background-color:blue;border-color:blue">Contact</button>
  55.     </div>
  56.      
  57.     <fieldset>
  58.         <input type="text" style="float: left" placeholder="Enter Your Name">
  59.  
  60.    
  61.         <input type="email" style="float: right" placeholder="Enter Your Email">
  62.  
  63.           <br>
  64.         <input type="text" placeholder="Enter Your Phone Number">
  65.  
  66.           <br>
  67.           <textarea rows="5" cols="50"> Leave Your message Here... </textarea>
  68.         <br> <br>
  69.         <button type="button" value="Send" style="float: right;border-color: cornflowerblue;cursor: pointer">Send</button>
  70.         </fieldset>
  71.      
  72.      <hr style="position: relative; width:1350px; height:0px; top: 400px;">
  73.      
  74.      <a href="https://www.facebook.com/HagerMohamed239" target="_blank"><img src="fblogo.png" width="50" height="50" style="position: absolute;right:750px;bottom: 30px"></a>
  75.      
  76.      <a href="https://www.instagram.com/hagergog99/" target="_blank"><img src="instalogo.jpg" width="50" height="50" style="position: absolute;right:680px;bottom: 30px"></a>
  77.      
  78.      <a href="https://twitter.com/HagerMohamed993" target="_blank"><img src="twitterlogo.jpg" width="50" height="50" style="position: absolute;right: 610px;bottom: 30px"></a>
  79.      
  80.      <div style="position: absolute;bottom: 1px;right: 680px"> &copy; 2019</div>
  81.  </body>
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement