Skip to content

Commit 69a9efa

Browse files
committed
Create inspecting.html
Sample file for the Inspecting CSS Lesson
1 parent b29dd4a commit 69a9efa

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

learn/inspecting/inspecting.html

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!doctype html>
2+
3+
<html lang="en">
4+
5+
<head>
6+
<meta charset="utf-8">
7+
<title>Inspecting CSS</title>
8+
9+
<style>
10+
body {
11+
background-color: #fff;
12+
color: #333;
13+
font: 1.2em / 1.5 Helvetica Neue, Helvetica, Arial, sans-serif;
14+
padding: 0;
15+
margin: 0;
16+
}
17+
18+
.container {
19+
padding: 20px 10px;
20+
max-width: 900px;
21+
margin: 40px auto;
22+
}
23+
24+
.box1 {
25+
width: 400px;
26+
margin: 0 0 40px 0;
27+
padding: 20px;
28+
border: 5px solid rgb(75, 70, 74);
29+
border-radius: .5em;
30+
}
31+
32+
.box2 {
33+
box-sizing: border-box;
34+
width: 400px;
35+
margin: 0 0 40px 0;
36+
padding: 20px;
37+
border: 5px solid rgb(78, 17, 66);
38+
border-radius: .5em;
39+
}
40+
41+
.special {
42+
color: orange;
43+
}
44+
45+
em {
46+
color: hotpink;
47+
font-weight: bold;
48+
}
49+
50+
</style>
51+
52+
</head>
53+
54+
<body>
55+
<div class="container">
56+
<div class="box1">
57+
<p>Veggies es bonus vobis, proinde vos postulo essum magis kohlrabi welsh onion daikon amaranth tatsoi
58+
tomatillo
59+
melon azuki bean garlic.</p>
60+
</div>
61+
62+
<div class="box2">
63+
<p>Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean
64+
collard
65+
greens dandelion okra wakame tomato. Dandelion cucumber earthnut pea peanut soko zucchini.</p>
66+
</div>
67+
68+
<p>Turnip <em class="special">greens</em> yarrow ricebean rutabaga endive cauliflower <em>sea lettuce</em> kohlrabi amaranth water spinach
69+
avocado
70+
daikon napa cabbage asparagus winter purslane kale. Celery potato scallion desert raisin horseradish
71+
spinach
72+
carrot soko.
73+
</p>
74+
75+
</div>
76+
</body>
77+
</html>

0 commit comments

Comments
 (0)