-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclasses.html~
More file actions
160 lines (159 loc) · 3.72 KB
/
classes.html~
File metadata and controls
160 lines (159 loc) · 3.72 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html>
<head>
<title>Sean & Katie's Classes</title>
<style type="text/css">
header, section, footer, aside, nav, article, figure, figcaption {
display: block;}
body {
color: #666666;
background-color: #f9f8f6;
background-image: url("images/china_flag.jpg");
background-position: centerCrop;
font-family: Georgia, Times, serif;
line-height: 1.4em;
margin: 0px;}
.wrapper {
width: 940px;
margin: 20px auto 20px auto;
border: 2px solid #000000;
background-color: #ffffff;}
header {
height: 160px;
// background-image: url("images/header.jpg");
}
h1 {
text-indent: 100px;
width: 940px;
height: 130px;
margin: 0px;
padding:10px 0px 0px 0px
}
nav, footer {
clear: both;
color: #ffffff;
background-color: #ff0000;
height: 30px;}
nav ul {
margin: 0px;
padding: 5px 0px 5px 30px;}
nav li {
display: inline;
margin-right: 40px;}
nav li a {
color: #ffff00;}
nav li a:hover, nav li a.current {
color: #000000;}
section.courses {
float: left;
width: 659px;
border-right: 1px solid #eeeeee;}
article {
clear: both;
overflow: auto;
width: 100%;}
hgroup {
margin-top: 40px;}
figure {
float: left;
width: 290px;
height: 220px;
padding: 5px;
margin: 20px;
border: 1px solid #eeeeee;
}
figcaption {
font-size: 90%;
text-align: left;}
aside {
width: 230px;
float: left;
padding: 0px 0px 0px 20px;}
aside section a {
display: block;
padding: 10px;
border-bottom: 1px solid #eeeeee;}
aside section a:hover {
color: #985d6a;
background-color: #efefef;}
a {
color: #de6581;
text-decoration: none;}
h1, h2, h3 {
font-weight: normal;}
h2 {
margin: 10px 0px 5px 0px;
padding: 0px;}
h3 {
margin: 0px 0px 10px 0px;
color: #de6581;}
aside h2 {
padding: 30px 0px 10px 0px;
color: #de6581;}
footer {
font-size: 80%;
padding: 7px 0px 0px 20px;}
</style>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<h1>Sean & Katie's Trip to China</h1>
<nav>
<ul>
<li><a href="home.html">home</a></li>
<li><a href="classes.html" class="current">classes</a></li>
<li><a href="">travel</a></li>
<li><a href="">friends</a></li>
<li><a href="">about</a></li>
</ul>
</nav>
</header>
<section class="courses">
<article>
<figure>
<img src="images/bigbuddah.jpg" alt="BigBuddah" height="210" width="auto"/>
<figcaption>TianYi Market</figcaption>
</figure>
<hgroup>
<h2>Shopping Day</h2>
</hgroup>
<p>Katie and Sean take a trip to TianYi Market to barter and ask locals some questions</p>
</article>
<article>
<figure>
<img src="images/bigbuddah.jpg" alt="Test" height="210" width="auto"/>
<figcaption>Test Day</figcaption>
</figure>
<hgroup>
<h2>Test day</h2>
</hgroup>
<p>Katie and Sean grind out an hour test and a 15 minute oral.</p>
</article>
</section>
<aside>
<section class="Travel Locations">
<h2>Popular Stories</h2>
<a href="">Shopping Adventure</a>
<a href="">Language Practicum</a>
<a href="">Average Class Day</a>
<a href="">tingxie</a>
<a href="">Tests</a>
</section>
<section class="contact-details">
<h2>Contact</h2>
<p>Sean O'Reilly<br />
764 Parkes Run Lane<br />
Villanova<br />
Pennyslvania 19085</p>
</section>
</aside>
<footer>
© 2014 smoreilly112
</footer>
</div><!-- .wrapper -->
</body>
</html