forked from ISM6225/HTML-CSS-Introduction
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathL3-Ex6-CSS-MediaQueries.html
More file actions
43 lines (35 loc) · 1.1 KB
/
L3-Ex6-CSS-MediaQueries.html
File metadata and controls
43 lines (35 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="L3-Ex6-CSS-MediaQueries.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="header">
<h1>ISM 6225 3-column demo</h1>
<h2>Based on example at <a href="https://www.w3schools.com/css/tryit.asp?filename=tryresponsive_breakpoints">W3Schools</a></h2>
<h2>URL: https://www.w3schools.com/css/tryit.asp?filename=tryresponsive_breakpoints</h2>
</div>
<div class="ThreeColumnBody">
<div class="leftMenu">
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</div>
<div class="mainBody">
<h1>The example</h1>
<p>W3Schools has great examples for most html and css topics. I have benefitted a lot from their working examples. This is an example</p>
</div>
<div class="rightMenu">
<div class="rightMenuDecorate">
<h2>What?</h2>
<p>Media queries example</p>
</div>
</div>
</div>
<div class="footer">
<p>Resize the browser window to see media queries in action.</p>
</div>
</body>
</html>