-
Notifications
You must be signed in to change notification settings - Fork 0
/
test08.html
383 lines (348 loc) · 12.8 KB
/
test08.html
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Slick Web Layout</title>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/text.css" />
<link rel="stylesheet" href="css/960.css" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--<link rel="stylesheet" href="css/style.css" >-->
<style>
header, nav, footer, article, section, aside {
display:block;
}
/*header, nav, footer, article, section, aside {
display:block;
}*/
#main-header #logo {height:70px;}
#main-header #main-nav {height:70px;}
#more-products {height:360px;}
#more-blurb #blurb {height:320px;}
#more-blurb #blog {height:320px;}
#main-footer {height:200px;}
#hfwrap {width:100%; background:transparent url(img/header-bg.jpg) no-repeat; height:400px; position:relative;}
#lnwrap {width:100%; background:transparent url(img/nav-bg.png) repeat-x;}
#hfwrap2 {
height:400px;
width:100%;
position:absolute;
background:transparent url(img/large-phone.png) no-repeat 80% 0;
}
#hfwrap3 {height:390px; width:100%; border-bottom:10px solid rgba(255, 255, 255, 0.5)}
a {text-decoration:none;}
a:link {
color:#505b4d;
}
a:visited {
color:#898A88;
}
a:hover {
color:#505b4d;
background-color:#FF9;
}
.button a {
padding:10px 15px;
text-transform:uppercase;
font:14px/1.5 Tahoma, Geneva, sans-serif;
font-weight:bold;
display:block;
text-align:center;
color:#505b4d;
/*background gradients */
background:#cfcfcf;
background:-webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(207,207,207)), color-stop(1, rgb(255,255,255)));
background:-moz-linear-gradient(center bottom, rgb(207,207,207) 0%, rgb(255,255,255) 100%);
/* border radius */
-webkit-border-radius: 0.8em;
-moz-border-radius: 0.8em;
border-radius: 10px;
border:1px solid #fff;
/* text shadow */
text-shadow: 1px 1px 0px #fff;
/* box shadow*/
-moz-box-shadow: 0 1px 3px #333;
-webkit-box-shadow: 0 1px 3px #333;
box-shadow: 0 1px 3px #333;
}
.button a:hover {
background:#fff;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgb(207,207,207)), color-stop(1, rgb(250,250,250)));
background:-moz-linear-gradient(center top, rgb(207,207,207) 0%, rgb(250,250,250) 100%);
}
.button a:active {
margin-top:1px;
}
:focus {outline:none;}
/*button::-moz-focus-inner {border:0;} */
/* @header
=======================*/
#logo {
background:transparent url(img/logo-site-hl.png) no-repeat;
text-indent:-7777em;
}
#logo a {
display:block;
width:167px;
height:71px;
}
#logo a:hover {
}
#main-nav h1 {text-indent:-7777em;}
#main-nav li {
float:left;
display:inline;
margin: 5px 5px 0 5px;
text-transform:capitalize;
}
#main-nav li a {
display:block;
padding:5px 10px;
color:#fff;
font:18px/1.5 Tahoma, Geneva, sans-serif;
text-decoration:none;
text-shadow:1px 1px 1px #333;
filter:dropshadow(color=#333, offx=1, offy=1);
}
#main-nav .current a,
#main-nav li:hover > a {
background:#8f8f8f;
-webkit-border-radius: 0.8em;
-moz-border-radius: 0.8em;
}
#main-nav li:a {margin-top:1px;}
/* @featured
=======================*/
#descrp {
position:relative;
top:60px;
}
#descrp h1 {
font:normal 36px/1.25 Tahoma, Arial, Helvetica, sans-serif;
color:#fff;
text-shadow: #333 1px 1px 1px;
}
#descrp p {
padding-top:60px;
float:left;
margin-right:55px;
}
/* @more-products
=======================*/
#more-products h1 {
padding:10px 0 0 0;
border-bottom:1px dotted #333;
margin:0 10px 20px;
font:bold 24px/1.5 Tahoma, Geneva, sans-serif;
color:#505b4d;
text-transform:capitalize;
}
.product h3 {
padding:10px 0;
font:bold 18px/1.5 Tahoma, Geneva, sans-serif;
color:#505b4d;
}
.product p {
font:normal 12px/1.5 Tahoma, Geneva, sans-serif;
color:#4f4f4f;
padding:0 0 20px 0;
}
#more-products span {
display:block;
border-bottom:1px dotted #333;
margin:0 10px;
}
/* @more-blurb
=======================*/
#more-blurb #blurb h1 {
padding:15px 0 0 0;
font:bold 24px/1.5 Tahoma, Geneva, sans-serif;
color:#505b4d;
}
#more-blurb p {
font:normal 12px/1.5 Tahoma, Geneva, sans-serif;
color:#4f4f4f;
}
#blurb p {
padding:0 0 20px 0;
}
#blurb-widget ul {float:left;}
#blurb-widget .button {
float:right;
margin:20px 20px 0 0;
}
#blurb-widget ul li {
position:relative;
height:80px;
}
#blurb-widget ul li p {
position:absolute;
font:normal italic 12px/1.2 Georgia, "Times New Roman", Times, serif;
top:10px;
padding:0 20px 0 180px;
}
#blog #blogwrap h1 {
margin:22px 0 0 0;
font:bold 18px/1.0 Tahoma, Geneva, sans-serif;
color:#505b4d;
}
#blog {background:transparent url(img/vertsep.png) no-repeat 0 0;}
#blog #blogwrap {
padding:0 0 0 20px;
}
#blog .thumb {
margin:0 10px 0 0;
border:3px solid #d1d1d1;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#blog .thumb {
float:left;
margin:5px 0 0 0;
}
#blog .entry {
margin:20px 0 0 80px;
}
#blog #blogwrap .entry h1 a:link {
margin:0 auto;
font:bold 14px/1.5 Tahoma, Geneva, sans-serif;
color:#505b4d;
}
#blog #blogwrap .entry h1 a:visited, #blogwrap .entry p a:visited {
color:#898A88;
}
#blog #blogwrap .entry h1 a:hover, #blogwrap .entry p a:hover {
color:#505b4d;
background-color:#FF9;
}
/* @footer
=======================*/
</style>
</head>
<body>
<div id="hfwrap">
<div id="hfwrap2">
<div id="hfwrap3">
<div id="lnwrap">
<header id="main-header" class="container_12 clearfix">
<h1 id="logo" class="grid_2 suffix_4"><a href="#">Design Revisions</a></h1>
<nav id="main-nav" class="grid_6">
<h1>Main page navigation</h1>
<ul>
<li class="current"><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
</div><!--lnwrap-->
<section id="featured" class="container_12 clearfix">
<div id="descrp" class="grid_6 suffix_6">
<h1>Lorem ipsum dolor sit amet, consecteteur adipiscing elit Aliquam ac duia praesent.</h1>
<p class="button"><a href="#">View our phones</a></p>
<p class="button"><a href="#">View other stuff</a></p>
<span></span>
<!--<div id="featured-product" class="grid_6">
<img src="img/large-phone.png" width="458" height="400" alt="our featured phone" />
</div>-->
</div><!--#descrp-->
</section>
</div><!--#hfwrap3-->
</div><!--hfwrap2-->
</div><!--hfwrap-->
<section id="more-products" class="container_12 clearfix">
<h1>Our phones</h1>
<div class="product grid_4">
<figure>
<img src="img/phone1.jpg" width="300" height="150" alt="phone number one" />
<figcaption>
<h3>Maecenas eu felis non elit eges</h3>
<p>Suspendisse arcu nunc, dapibus viverra, eleifend at, posuere vitae, orci. Aliquam tempus dui sit amet odio. Morbi viverra leo eu purus. Phasellus nec ligula. Duis at erat. Donec sodales. <a href="#">More...</a></p>
</figcaption>
</figure>
</div>
<div class="product grid_4">
<figure>
<img src="img/phone2.jpg" width="300" height="150" alt="phone number two" />
<figcaption>
<h3>Maecenas eu felis non elit eges</h3>
<p>Suspendisse arcu nunc, dapibus viverra, eleifend at, posuere vitae, orci. Aliquam tempus dui sit amet odio. Morbi viverra leo eu purus. Phasellus nec ligula. Duis at erat. Donec sodales. <a href="#">More...</a></p>
</figcaption>
</figure>
</div>
<div class="product grid_4">
<figure>
<img src="img/phone3.jpg" width="300" height="150" alt="phone number three" />
<figcaption>
<h3>Maecenas eu felis non elit eges</h3>
<p>Suspendisse arcu nunc, dapibus viverra, eleifend at, posuere vitae, orci. Aliquam tempus dui sit amet odio. Morbi viverra leo eu purus. Phasellus nec ligula. Duis at erat. Donec sodales. <a href="#">More...</a></p>
</figcaption>
</figure>
</div>
<span class="clearfix"></span>
</section><!--#more-products-->
<section id="more-blurb" class="container_12 clearfix">
<div id="blurb" class="grid_7">
<h1>Curabitur bibendum magna. Donec velit.</h1>
<p>Sed euismod erat eu sem. Nam eu erat in mi semper tempor. Donec congue, augue in feugiat congue, magna pede tristique ligula, vitae ultrices erat justo ut purus. Mauris ante. Aenean est velit, scelerisque a, auctor ut, accumsan ut, augue. Proin in velit. Aliquam ac dui. Praesent congue leo eu nunc. Curabitur imperdiet, nulla sed feugiat pretium, elit ante blandit mi, non tempor est ligula id ipsum. Morbi metus. Pellentesque tellus. Proin sed velit. Suspendisse fringilla ornare elit. Pellentesque ac augue. Curabitur vestibulum lorem at velit.</p>
<div id="blurb-widget">
<ul>
<li><img src="img/phone-widget.jpg" width="380" height="84" alt="phone widget 1" />
<p>Suspendisse arcu nunc, dapibus viverra, eleifend at, posuere vitae, orci. Aliquam tempus dui sit amet odio.</p></li>
</ul>
<p class="button"><a href="#">more info</a></p>
</div><!--#blurb-widget-->
</div><!--#blurb-->
<div id="blog" class="grid_5">
<div id="blogwrap">
<h1>Latest from the blog</h1>
<article class="clearfix">
<a href="#"><img src="img/thumb01.png" width="60" height="60" alt="blog entry thumbnail" class="thumb" /></a>
<div class="entry">
<h1><a href="#">Sed euismod erat eu sem nam eu</a></h1>
<p>Quisque venenatis, ipsum nec tincidunt ultrices, sem metus mattis erat, molestie scelerisque dolor augue ut orci. Maecenas vehicula dignissim leo. <a href="#">Continue reading "Sed uismod erat..."</a></p>
</div><!--#entry-->
</article>
<article class="clearfix">
<a href="#"><img src="img/thumb02.png" width="60" height="60" alt="blog entry thumbnail" class="thumb" /></a>
<div class="entry">
<h1><a href="#">Sed euismod erat eu sem nam eu</a></h1>
<p>Quisque venenatis, ipsum nec tincidunt ultrices, sem metus mattis erat, molestie scelerisque dolor augue ut orci. Maecenas vehicula dignissim leo. <a href="#">Continue reading "Sed uismod erat..."</a></p>
</div><!--#entry-->
</article>
</div><!--#blogwrap-->
</div><!--#blog-->
</section><!--#more-blurb-->
<footer id="main-footer" class="container_12 clearfix">
<section class="footersub grid_3">
<h1>mailing list</h1>
<input type="email" placeholder="me@myemail.com"/>
<p class="button"><a href="#">go!</a></p>
</section>
<section class="footersub grid_3">
<h1>address</h1>
<p>12345 Somewhere Street, Someplace, 10292 New York</p>
</section>
<section class="footersub grid_3">
<h1>contact us</h1>
<p>Phone: (987) 654-3210</p>
<p>support@designrevisions.com</p>
</section>
<section class="footersub grid_3">
<h1>connect with us</h1>
<p class="icon"><a href="#"><img src="img/assets/twitter_32.png" width="32" height="32" alt="twitter icon" /></a></p>
<p class="icon"><a href="#"><img src="img/assets/facebook_32.png" width="32" height="32" alt="facebook icon" /></a></p>
<p class="icon"><a href="#"><img src="img/assets/flickr_32.png" width="32" height="32" alt="flickr icon" /></a></p>
<p class="icon"><a href="#"><img src="img/assets/rss_32.png" width="32" height="32" alt="rss icon" /></a></p>
</section>
<section id="copyright-info">
<small>©2010 Design Revisions LLC. All rights reserved.</small>
</section>
</footer>
</body>
</html>