Posts

HTML Practice Assignment Marqee

  1. Basic Marquee <!DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Basic Marquee </ title > </ head > < body > < h2 > Welcome to My Website </ h2 > < marquee > Welcome! Stay tuned for updates. </ marquee > </ body > </ html > 2. Marquee with a Table <!DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Marquee with Table </ title > </ head > < body > < marquee > Latest Scores: Team A - 2, Team B - 3 </ marquee > < table border = "1" > < tr ...

HTML Assignment Practical Practice List

  1. Basic Unordered List <!DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Basic Unordered List </ title > < style > ul { list-style-type : circle; font-family : Arial, sans-serif; } </ style > </ head > < body > < h2 > Fruits </ h2 > < ul > < li > Apple </ li > < li > Banana </ li > < li > Cherry </ li > </ ul > </ body > </ html > 2. Ordered List with Custom Numbers <!DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scal...

HTML Assignment Practice Table Practical

  1. Basic Table <!DOCTYPE html > < html > < head > < title > Basic Table </ title > </ head > < body > < h1 > Simple Table </ h1 > < table border = "1" > < tr > < th > Name </ th > < th > Age </ th > < th > City </ th > </ tr > < tr > < td > Alice </ td > < td > 25 </ td > < td > New York </ td > </ tr > < tr > < td > Bob </ td > < td > 30 </ td > < td > Los Angeles </ td > </ tr > </ table > </ body > </ html > 2. Table with Row and Column Span <!DOCTYPE html > < html > < head > < title > Table with Span </ title > </ he...