-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathman.html
More file actions
47 lines (42 loc) · 1.11 KB
/
man.html
File metadata and controls
47 lines (42 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>Responsive Web Design Example</title>
<style>
body{
font-family:Arial;
text-align: center;
padding: 20px;
}
.box{
background-color: rgb(42, 59, 65);
padding: 20px;
font-size: 24px;
}
@media (max-width: 768px) {
.box {
background-color: lightgreen;
font-size: 20px;
}
}
@media (max-width: 480px) {
.box {
background-color:orange;
font-size: 18px;
}
.box{
background-color: orange;
font-size: 18px;
}
}
</style>
</head>
<body>
<h1>
Responsive Web Design
</h1>
<div class="box">
Resize the browser window to see the background color and font size change!
</div>
</body>
</html>