01/09/2021 html
program 1 write a program to display text with line and paragraph breaks. <HTM> <HEAD> <TITLE> Text with Breaks </TITLE> </HEAD> <BODY bgcolor="red"> Hello! Welcome to my personal webpage. I hope you like it. <P> FULL FORMS- Post Office Protocol (POP) Transmission Control Protocol (TCP) Internet Protocol (IP) Simple mail transport Protocol (SMTP) File Transfer Protocol (FTP) Hyper Text Transfer Protocol (HTTP) Hyper Text Transfer Protocol Secure (HTTPS) </P> </BODY> </HTML> program 2 write a program to display paragraph in various alignments. <HTM> <HEAD> <TITLE> Text with Breaks </TITLE> </HEAD> <BODY> <font size="20"> <P ALIGN=LEFT> MERA </P> <P ALIGN=CENTER> BHARAT </P> <P ALIGN=RIGHT> MAHAN </P> </font> </BODY> </HTML>