This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
en:web_design:text:paragraphs [2021/11/22 04:39] mag [HTML Tags] |
en:web_design:text:paragraphs [2023/08/16 09:33] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Web Development Lesson 2 - Text ====== | ====== Web Development Lesson 2 - Text ====== | ||
- | ===== Tools: JSFiddle | + | ===== HTML Tags ===== |
+ | |||
+ | ==== Tools: JSFiddle ==== | ||
* Open [[https:// | * Open [[https:// | ||
Line 6: | Line 8: | ||
< | < | ||
- | Mi amigo Pablo tiene un mascota llamado que le gusta tener su rasgado. Cuando van al parque, le gusta perseguir una . Él rueda en la tierra así que Pablo tiene que lavarlo cuando llegan a casa. | + | My friend |
- | Los domingos conducen a las donde corre el césped y apostando la cola. Se cansa tanto que duerme todo el camino a casa.</ | + | On Sundays they drive to the mountains where he runs around smelling the grass and wagging his tail. He gets so tired that he sleeps all the way home.</ |
* Click ' | * Click ' | ||
- | ===== HTML Tags ===== | + | ==== Paragraphs |
* Notice how the text runs continuously rather than dividing into paragraphs. The browser ignores carriage returns, tabs, double spaces and other document formatting information. We need to add these using HTML ' | * Notice how the text runs continuously rather than dividing into paragraphs. The browser ignores carriage returns, tabs, double spaces and other document formatting information. We need to add these using HTML ' | ||
< | < | ||
- | <p>Mi amigo Pablo tiene un mascota llamado que le gusta tener su rasgado. Cuando van al parque, le gusta perseguir una . Él rueda en la tierra así que Pablo tiene que lavarlo cuando llegan a casa.</ | + | <p>My friend |
- | <p>Los domingos conducen a las donde corre el césped y apostando la cola. Se cansa tanto que duerme todo el camino a casa.</ | + | <p>On Sundays they drive to the mountains where he runs around smelling the grass and wagging his tail. He gets so tired that he sleeps all the way home.</ |
* Click ' | * Click ' |