Advertisement
backlight0815

AboutUs

Feb 10th, 2023
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AboutUs.aspx.cs" Inherits="Learning.AboutUs" %>
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7. <title></title>
  8.  
  9. <style>
  10.  
  11. body {
  12. background-image: url('Image/HD-wallpaper-melody-of-love-notes-music-love-melody-white-blue.jpg');
  13. background-repeat: no-repeat;
  14. background-position: top;
  15. background-size: 100% 200px;
  16. }
  17. .Title{
  18. position:center;
  19. text-align:center;
  20. margin-left:45%;
  21. font-size:36px;
  22. font-family:'Times New Roman';
  23. text-transform:uppercase;
  24. word-spacing:2px;
  25. letter-spacing:2px;
  26.  
  27.  
  28. }
  29. .column {
  30. float: left;
  31. width: 50%;
  32. padding: 10px;
  33. height: 300px; /* Should be removed. Only for demonstration */
  34. }
  35.  
  36. /* Clear floats after the columns */
  37. .row:after {
  38. content: "";
  39. display: table;
  40. clear: both;
  41. }
  42.  
  43.  
  44. </style>
  45.  
  46. </head>
  47. <body>
  48. <form id="form1" runat="server">
  49.  
  50.  
  51. "<br />
  52.  
  53. <br /> <br />
  54. <br />
  55. <br />
  56. <br />
  57. <br />
  58. <br />
  59. <br />
  60. <br />
  61. <br />
  62.  
  63.  
  64.  
  65.  
  66. <label for="Contact" class="Title">About Us</label>
  67.  
  68. <div class="row">
  69. <div class="column" style="background-color:#aaa;">
  70. <h2>Column 1</h2>
  71. <p>Some text..</p>
  72. </div>
  73. <div class="column" style="background-color:#bbb;">
  74. <h2>Column 2</h2>
  75. <p>Some text..</p>
  76. </div>
  77. </div>
  78.  
  79.  
  80.  
  81. </form>
  82. </body>
  83. </html>
  84.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement