-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSection.master
More file actions
83 lines (77 loc) · 2.57 KB
/
Copy pathSection.master
File metadata and controls
83 lines (77 loc) · 2.57 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
71
72
73
74
75
76
77
78
79
80
81
82
83
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Section.master.cs" Inherits="Section" %>
<!DOCTYPE html>
<html>
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server" >
<!-- Header -->
<header id="header" class="skel-layers-fixed">
<h1><a href="HomePage.aspx">DreamWar</a></h1>
<nav id="nav">
<ul>
<li><a href="Fantasy.aspx">Fantasy</a></li>
<li><a href="Fairy.aspx">Fairy</a></li>
<li><a href="EpicWar.aspx">Epic War</a></li>
<li><a href ="Narrate.aspx">Narrate World</a></li>
<li><input type="button" id="Login" class="button special" runat="server" onserverclick="Unnamed_ServerClick" value="Login"/></li>
</ul>
</nav>
</header>
<section>
<div>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<div class="row double">
<div class="6u">
<div class="row collapse-at-2">
<div class="6u">
<h3>Last</h3>
<ul class="alt">
<li><a href="#">Little Red Riding Hood</a></li>
<li><a href="#">Snow White</a></li>
<li><a href="#">The Frog Price</a></li>
<li><a href="#">Aquamarine</a></li>
</ul>
</div>
<div class="6u">
<h3>Classsical</h3>
<ul class="alt">
<li><a href="#">Iron Man</a></li>
<li><a href="#">The Little Prince</a></li>
<li><a href="#">The Worderful Wizard Of OZ</a></li>
</ul>
</div>
</div>
</div>
<div class="6u">
<h2>Recommand</h2>
<p> Flipped</p>
<p>The House On Mango Street</p>
</div>
</div>
<ul class="copyright">
<li style="color: #000000">© Copyright ©2017 Starrier.All rights reserved.</li>
<li style="color: #000000">Design: <a href="www.stattier.net">Starrier</a></li>
</ul>
</div>
</footer>
</form>
</body>
</html>