-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 1.76 KB
/
index.html
File metadata and controls
56 lines (53 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
<!doctype html>
<!-- ultima versión html -->
<html>
<head>
<meta charset="utf-8">
<!-- formato caracteres -->
<title>Mi primer documento</title>
<link rel="stylesheet" href="estilo.css">
</head>
<!-- <style>
h1 {
color:red
}
.subtitle {
color:blue
}
#title{
color:green;
}
</style>
definir el estilo desde aquí no es recomendable,
es mejor crear otro archiva y hacer link con este -->
<body>
<div class="envoltura">
<h1>Título 1</h1>
<p>
Este es un párrafo <em>importante</em>.
</p>
<h2 class="subtitle">Título 2</h2>
<p>Este es otro parrafo con más información</p>
<h3 id="title">Título 3</h3>
</div><div class="right">
<ul>
<li>esta</li>
<li>es</li>
<li>una</li>
<li>lista</li>
<li>no</li>
<li>ordenada</li>
<li><a href="https://www.w3schools.com">This is a link</a></li>
<li><button>oli</button></li>
</ul>
<a href="https://www.w3schools.com">This is a link</a>
<br><br>
<a href="https://www.google.com">oli</a><br>
<img src="juan.jpg" alt="Juan" width="100" height="140">
<br>
<a href="https://www.google.com" target="_blank">
<img src="juan.jpg" alt="imagen link">
</a>
</div>
</body>
</html>