-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpracticandoconHTML-TEXTOS.html
More file actions
45 lines (41 loc) · 1.95 KB
/
practicandoconHTML-TEXTOS.html
File metadata and controls
45 lines (41 loc) · 1.95 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
<!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>Probando Etiquetas</title>
</head>
<body>
<h1>Esto es una prueba Html - ENCABEZADO 1</h1>
<h2>Esto es una prueba Html - ENCABEZADO 2</h2>
<h3>Esto es una prueba Html - ENCABEZADO 3</h3>
<h4>Esto es una prueba Html - ENCABEZADO 4</h4>
<h5>Esto es una prueba Html - ENCABEZADO 5</h5>
<h6>Esto es una prueba Html - ENCABEZADO 6</h6>
<p>Probando los tipos de etiquetas de HTML</p>
<p>Ahora <strike>probaremos</strike> <tt>veremos</tt> los <b>cambios</b> en el <i>Formato</i> en esta <u>página</u></HTML></p>
<hr>
<p>Esto es un <br> párrafo con un salto de línea</p>
<pre>Maria tenia un corderito
que saltaba por ahi
comia pasto
y balaba... beee
</pre>
<p>Ahora veremos los enlaces <br> <a href="https://www.w3schools.com/html/html_attributes.asp"></a></p>
<p>Insertamos una imagen <br> <img src="C:\Users\atena\OneDrive\Escritorio\ARGENTINA PROGRAMA\CURSADA\a6247adbbdfb968b544ab3a971a444dd" alt="Atajos en Visual Studio Code"> </p>
<!-- Ver porque no funciona la imagen-->
<p style="color:blueviolet"> ahora usamos color</p>
<p>probando colores</p>
<p>RGB (Rojo,Verde,Azul)</p>
<p style ="background-color:rgb(0, 0, 0)">negro</p>
<p style ="background-color:rgb(255,255,255)">blanco</p>
<p style ="background-color: rgb(255, 0, 0)">rojo</p>
<p style ="background-color: rgb(0, 255, 0);">verde</p>
<p style="background-color: rgb(0, 0 , 255)">azul</p>
<p style="background-color: rgb(60, 179, 113)">Que color soy</p>
<p style="background-color:rgb(238, 130, 238)">Que color soy</p>
<p style="background-color:rgb(255,165,0)">Que color soy</p>
<p style=" background-color: rgb(106, 90, 205);">Que color soy</p>
</body>
</html>