Skip to content

Commit 01f4435

Browse files
committed
Healed remaining lectures (before and after were same).
1 parent 4b0304c commit 01f4435

File tree

9 files changed

+26
-51
lines changed

9 files changed

+26
-51
lines changed

examples/Lecture04/doc-structure-after.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<title>Courseta is Cool!</title>
5+
<title>Coursera is Cool!</title>
66
</head>
77
<body>
88
Coursera is SO cool! I am learning so much!

examples/Lecture07/unordered-lists-before.html

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,16 @@ <h1>Unordered list</h1>
99
<div>
1010

1111
My typical dinner shopping list:
12-
<ul>
13-
<li>Milk</li>
14-
<li>Donuts</li>
15-
<li>Cookies
16-
<ul>
17-
<li>Chocolate</li>
18-
<li>Sugar</li>
19-
<li>Peanut Butter</li>
20-
</ul>
21-
</li>
22-
<li>Pepto Bismol</li>
23-
</ul>
24-
25-
12+
13+
Milk
14+
Donuts
15+
Cookies
16+
Chocolate
17+
Sugar
18+
Peanut Butter
19+
Pepto Bismol
20+
21+
2622
</div>
2723
</body>
2824
</html>

examples/Lecture14/child-selector-before.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
<style>
77

88
/* any article element which is a direct child of a section element,i.e., any article element whose immediate parent is a section element. */
9-
section > article {
9+
xxx {
1010
color: green;
1111
font-size: 24px;
1212
}
1313

1414
/* any h2 element which is a direct child of a section element,i.e., any h2 element whose immediate parent is a section element. */
15-
section > h2 {
15+
xxx {
1616
color: green;
1717
}
1818

examples/Lecture14/descendant-selector-before.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<style>
77

88
/* all li elements that are inside a section element. */
9-
section li {
9+
xxx {
1010
color: green;
1111
}
1212

examples/Lecture14/element-with-class-before.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
<style>
88

99
/* all with class="highlight" */
10-
.highlight {
10+
xxx {
1111
background-color: green;
1212
}
1313

1414
/* all p elements with class="highlight" */
15-
p.highlight {
15+
xxx {
1616
font-style: italic;
1717
}
1818

1919
/* all elements with class 'highlight' as well as with class 'mainpoint'. */
20-
.highlight.mainpoint {
20+
xxx {
2121
color: red;
2222
background-color: black;
2323
}

examples/Lecture18/font-size-before.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
<meta charset="utf-8">
55
<title>Setting Font Size</title>
66
<style>
7-
body {
8-
font-size: 120%;
9-
}
7+
108
</style>
119
</head>
1210
<body>

examples/Lecture18/styling-text-before.html

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@
55
<title>Styling Text</title>
66
<style>
77
.style {
8-
font-family: Arial, Helvetica, sans-serif;
9-
color: #0000ff;
10-
font-style: italic;
11-
font-weight: bold;
12-
font-size: 24px;
13-
text-transform: uppercase;
14-
text-align: right;
158

169
}
1710
</style>

examples/Lecture26/grid-after.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<title>Boostrap Starter Page</title>
7+
<title>Bootstrap Starter Page</title>
88
<link rel="stylesheet" href="css/bootstrap.min.css">
99
<link rel="stylesheet" href="css/styles.css">
1010
</head>

examples/Lecture26/grid-before.html

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,17 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<title>Boostrap Starter Page</title>
7+
<title>Bootstrap Starter Page</title>
88
<link rel="stylesheet" href="css/bootstrap.min.css">
99
<link rel="stylesheet" href="css/styles.css">
1010
</head>
1111
<body>
12-
13-
<div class="container-fluid">
14-
<div class="row">
15-
<div class="col-md-4 col-sm-6">Col 1</div>
16-
<div class="col-md-4 col-sm-6">Col 2</div>
17-
<div class="col-md-4 col-sm-6">Col 3</div>
18-
</div>
19-
20-
<div class="row">
21-
<div class="col-md-4 col-sm-6">Col 1</div>
22-
<div class="col-md-4 col-sm-6">Col 2</div>
23-
<div class="col-md-4 col-sm-6">Col 3</div>
24-
</div>
25-
26-
<div class="row">
27-
<div class="col-xs-6">Col 1</div>
28-
<div class="col-xs-6">Col 2</div>
29-
<div class="col-xs-6">Col 3</div>
12+
13+
<div>
14+
<div>
15+
<div>Col 1</div>
16+
<div>Col 2</div>
17+
<div>Col 3</div>
3018
</div>
3119
</div>
3220

0 commit comments

Comments
 (0)