Advertisement
Guest User

Untitled

a guest
Sep 4th, 2016
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.66 KB | None | 0 0
  1. <body>
  2.     <form id="form1" runat="server">
  3.     <div style="height: 19px">
  4.     Test World Body V1
  5.     </div>
  6.         <asp:Label ID="lb_username" runat="server" Text="Username:" ></asp:Label>
  7.         <asp:TextBox ID="tb_username" runat="server" CssClass="tab" ></asp:TextBox>
  8.         <br />
  9.         <asp:Label ID="lb_password" runat="server" Text="password:" ></asp:Label>
  10.         <asp:TextBox ID="tb_password" runat="server" CssClass="tab" ></asp:TextBox>
  11.     </form>
  12. </body>
  13.  
  14. CSS:
  15.  
  16. body {
  17.     background-image: url('../images/background.jpg');
  18.     background-repeat:no-repeat;
  19.     background-attachment:fixed;
  20. }
  21. .tab{
  22.     margin-left:10px
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement