Skip to content

Commit 500f3a1

Browse files
authored
Merge pull request 4GeeksAcademy#11 from josemamunoz/master
Corregido error del body en 05-Specificity
2 parents ec789c3 + caa2e6e commit 500f3a1

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

exercises/05-Specificity/index.html

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
<!DOCTYPE html>
22
<html>
3-
<head>
4-
<meta charset="utf-8" />
5-
<meta name="viewport" content="width=device-width" />
6-
<link rel="stylesheet" type="text/css" href="./styles.css" />
7-
<title>05 Specificity</title>
8-
</head>
9-
<body>
10-
<ul>
11-
<li>My first item of the list</li>
12-
<li>My second item of the list</li>
13-
<li id="thirditem">My third item of the list</li>
14-
<li>My forth item of the list</li>
15-
<li>My fifth item of the list</li>
16-
</ul>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width" />
6+
<link rel="stylesheet" type="text/css" href="./styles.css" />
7+
<title>05 Specificity</title>
8+
</head>
9+
<body>
10+
<ul>
11+
<li>My first item of the list</li>
12+
<li>My second item of the list</li>
13+
<li id="thirditem">My third item of the list</li>
14+
<li>My forth item of the list</li>
15+
<li>My fifth item of the list</li>
16+
</ul>
17+
</body>
1718
</html>

0 commit comments

Comments
 (0)