-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault.aspx
More file actions
70 lines (69 loc) · 2.24 KB
/
default.aspx
File metadata and controls
70 lines (69 loc) · 2.24 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
<%@ Page Title="" Language="C#" MasterPageFile="~/Default.Master" AutoEventWireup="true" CodeBehind="default.aspx.cs" Inherits="MCPatterns._default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div id="arial">
<h1>Arial</h1>
<h1>H1 Tag</h1>
<h2>H2 Tag</h2>
<h3>H3 Tag</h3>
<h4>H4 Tag</h4>
<h5>H5 Tag</h5>
<p style="font-size: xx-large;">xx-Large</p>
<p style="font-size: x-large;">x-Large</p>
<p style="font-size: large;">Large</p>
<p style="font-size: medium;">Medium</p>
<p>Standard</p>
<p style="font-size: small;">Small</p>
<p style="font-size: x-small;">X-Small</p>
<p style="font-size: xx-small;">XX-Small</p>
</div>
<div id="calibri">
<h1>Calibri</h1>
<h1>H1 Tag</h1>
<h2>H2 Tag</h2>
<h3>H3 Tag</h3>
<h4>H4 Tag</h4>
<h5>H5 Tag</h5>
<p style="font-size: xx-large;">xx-Large</p>
<p style="font-size: x-large;">x-Large</p>
<p style="font-size: large;">Large</p>
<p style="font-size: medium;">Medium</p>
<p>Standard</p>
<p style="font-size: small;">Small</p>
<p style="font-size: x-small;">X-Small</p>
<p style="font-size: xx-small;">XX-Small</p>
</div>
<div id="tahoma">
<h1>Tahoma</h1>
<h1>H1 Tag</h1>
<h2>H2 Tag</h2>
<h3>H3 Tag</h3>
<h4>H4 Tag</h4>
<h5>H5 Tag</h5>
<p style="font-size: xx-large;">xx-Large</p>
<p style="font-size: x-large;">x-Large</p>
<p style="font-size: large;">Large</p>
<p style="font-size: medium;">Medium</p>
<p>Standard</p>
<p style="font-size: small;">Small</p>
<p style="font-size: x-small;">X-Small</p>
<p style="font-size: xx-small;">XX-Small</p>
</div>
<div id="verdana">
<h1>Verdana</h1>
<h1>H1 Tag</h1>
<h2>H2 Tag</h2>
<h3>H3 Tag</h3>
<h4>H4 Tag</h4>
<h5>H5 Tag</h5>
<p style="font-size: xx-large;">xx-Large</p>
<p style="font-size: x-large;">x-Large</p>
<p style="font-size: large;">Large</p>
<p style="font-size: medium;">Medium</p>
<p>Standard</p>
<p style="font-size: small;">Small</p>
<p style="font-size: x-small;">X-Small</p>
<p style="font-size: xx-small;">XX-Small</p>
</div>
</asp:Content>