-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.aspx
50 lines (46 loc) · 1.45 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
<%@ Page Title="Contact" Language="VB" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Contact.aspx.vb" Inherits="SAPP.Contact" %>
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
<hgroup class="title">
<h1><%: Title %>.</h1>
<h2>Your contact page.</h2>
</hgroup>
<section class="contact">
<header>
<h3>Phone:</h3>
</header>
<p>
<span class="label">Main:</span>
<span>425.555.0100</span>
</p>
<p>
<span class="label">After Hours:</span>
<span>425.555.0199</span>
</p>
</section>
<section class="contact">
<header>
<h3>Email:</h3>
</header>
<p>
<span class="label">Support:</span>
<span><a href="mailto:Support@example.com">Support@example.com</a></span>
</p>
<p>
<span class="label">Marketing:</span>
<span><a href="mailto:Marketing@example.com">Marketing@example.com</a></span>
</p>
<p>
<span class="label">General:</span>
<span><a href="mailto:General@example.com">General@example.com</a></span>
</p>
</section>
<section class="contact">
<header>
<h3>Address:</h3>
</header>
<p>
One Microsoft Way<br />
Redmond, WA 98052-6399
</p>
</section>
</asp:Content>