-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (40 loc) · 2.3 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>RWD Workshop | Workshop Exercises</title>
<meta name="description" content="We're making responsive interwebs!" />
<meta name="author" content="Philly Tech Week" />
<!-- force IE to latest rendering engine for each version; chrome frame reference -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- mobile settings -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/styles.css" />
<!-- build custom modernizr library for feature detection -->
<script type="text/javascript" src="js/modernizr-2.7.1.min.js"></script>
</head>
<body>
<div class="container-site">
<h1>Introduction to Responsive Web Design Workshop</h1>
<h2>Workshop Slides (PDF)</h2>
<strong><a href="PTW15-RWD-Intro-Workshop.pdf" title="Slide Deck PDF">Slide Deck PDF</a></strong>
<h2>GitHub Project</h2>
<strong><a href="https://github.com/o3world/intro-rwd-workshop" title="GitHub Project Assets">GitHub Project Assets</a></strong>
<h2>Exercise Links</h2>
<ol>
<li><a href="index-1.html" title="Fixed Grid Layout">Fixed Grid Layout</a></li>
<li><a href="index-2.html" title="Flexible Grid Layout">Flexible Grid Layout</a></li>
<li><a href="index-3.html" title="Fluid Media (Images)">Fluid Media (Images)</a></li>
<li><a href="index-4.html" title="Not-So Fluid Media (Images)">Not-So Fluid Media (Images)</a></li>
<li><a href="mq-sample.html" title="Media Query Teaser">Media Query Teaser</a></li>
<li><a href="index-5.html" title="Mobile First Build">Mobile First Build (Media Query Starter)</a></li>
<li><a href="index-5-1.html" title="Media Query Width">Media Query Width (768 and 960)</a></li>
<li><a href="index-5-2.html" title="Media Query Height/Combined Queries">Media Query Height/Combined Queries</a></li>
<li><a href="index-5-3.html" title="Media Query Navigation">Media Query Navigation</a></li>
<li><a href="index-6.html" title="Added Viewport Meta Tag">Added Viewport Meta Tag</a></li>
<li><a href="index-7.html" title="Retinafied with Media Queries">Retinafied with Media Queries</a></li>
<li><a href="index-8.html" title="Picture Polyfill JS">Picture Polyfill JS</a></li>
</ol>
</div>
</body>
</html>