-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.44 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RWD First Examples</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>RWD First Examples</h1>
</header>
<div class="feature">
<h2>Explanation</h2>
<p>We will use this HTML as our base to learn the basics of Responsive Web Design (RWD). Most of what we will be doing is CSS. A blank style.css has been linked to this file as well as a CSS Reset, courtesy of <a
href="http://meyerweb.com/eric/tools/css/reset/">Eric Meyer</a
>.</p>
</div><!-- end .feature -->
<div class="feature">
<h2>Dummy Text</h2>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
</div> <!-- end .feature -->
<div class="feature">
<h2>More Dummy Text</h2>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
</div><!-- end .feature -->
<footer>
<p>© Chris Stein 2013</p>
</footer>
</body>
</html>