Actividad en HTML 10°
- AdvA
- 16 feb 2017
- 1 Min. de lectura

Resuelve los siguientes ejercicios:
1. Change the size of the image to 250 pixels wide and 400 pixels tall. Edit this code:
<!DOCTYPE html> <html> <body>
<img src="w3schools.jpg" width="104" height="142">
</body> </html>
2. Transform the text below into a link that goes to "https://www.google.com".
<!DOCTYPE html> <html> <body>
This is a link
</body> </html> 3. Change the destination of the link below to "www.platzi.com".
<!DOCTYPE html> <html> <body>
<a href="https://www.w3schools.com">This is a link</a>
</body> </html>
4. Add a horizontal rule between the heading and the paragraph.
<!DOCTYPE html> <html> <body>
<h1>London</h1>
<p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
</body> </html>
5. The next code has a mistake, it shows every line as a heading, why? Correct it
<!DOCTYPE html> <html> <body>
<h1>This is a Heading
<p>This is a paragraph. <p>This is a paragraph. <p>This is a paragraph.
</body> </html>
6. Fix the display of this poem.
<!DOCTYPE html> <html> <body>
<p> My Bonnie lies over the ocean. My Bonnie lies over the sea. My Bonnie lies over the ocean. Oh, bring back my Bonnie to me. </p>
</body> </html>
7. Change the link below to open in a new window.
<!DOCTYPE html> <html> <body>
<a href="www.platzi.com">HTML Images</a>
</body> </html>
8. Add a link to the image below (make it go "https://www.google.com" if you click on it), and set the size of the image to 300 pixels wide and 200 pixels tall..
<!DOCTYPE html> <html> <body>
<img src="C:\Windows\Web\Wallpaper\Windows\img0.jpg" alt="Windows">
</body> </html>
Entradas recientes
Ver todoPlanteamiento del problema Definición de problema de investigación “Se denomina problema de investigación a un fenómeno que afecta a una...
Comments