-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 913 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#li1 {
color: red;
}
.title {
color: blue;
}
.container {
background: wheat;
}
.item {
display: inline-block0;
}
</style>
</head>
<body>
<section>
<h1>Platzi</h1>
<p>Tiene una Comunidad</p>
<ul>
<li class="title">Maravillosa</li>
<li id="li1">Increible</li>
</ul>
<div class="container">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
</div>
</section>
</body>
</html>