-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathContact.aspx
58 lines (43 loc) · 2.25 KB
/
Contact.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Contact.aspx.cs" Inherits="Contact" %>
<html>
<head>
<link href="Content/Gamesell.css" rel="stylesheet" />
<link href="Content/Site.css" rel="stylesheet" />
<link href="Content/StyleGameSheet.css" rel="stylesheet" />
</head>
<!-- new cls -->
<body style="background-image:url(back2.jpg)">
<a runat="server" href="~/Default"><input style="margin-left:50px;margin-top:20px;color:red" class="submit" name="submit" type="submit" value="BACK"/></a>
<footer style="margin-top:100px">
<div class="foot">
<div class="social">
<h3>Stay connected</h3>
<a class="social youtube" href="https://www.youtube.com"> <img src="youtube1.jpg"/></a>
<a class="social facebook" href="https://www.facebook.com"><img src="facebook1.jpg"/></a>
<a class="social twitter" href="https://www.twitter.com"><img src="twitter1.jpg"/></a>
</div>
<div class="contact">
<h3>Contact Us</h3>
<form id="form1" runat="server">
Name
<asp:TextBox ID="txt_name" runat="server"></asp:TextBox>
<br />
<br />
Email
<asp:TextBox ID="txt_email" runat="server"></asp:TextBox>
<br />
<br />
Message
<textarea id="txt_message" name="S1" runat="server"></textarea><br />
<br />
<br />
<br />
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Submit" />
</form>
</div>
</div>
</footer>
</body>
</html>
</asp:Content>