Posts

Showing posts from February 2, 2020

DHTML Unit 1 programs

!..........DHTML Unit-1(CSS) program............! NOTE: ALL THE PROGRAMS DONE BY SHAKSHI SHAH.........! 1) Write HTML program which contains cascaded style sheet for p, h2, h3, body and font attribute. ANS) <!DOCTYPE html> <html> <head> <title>UNIT 1 - prg 1</title> <style> p { background-color:yellow; } h2 { color:red; //this will change font color to red... } h3 { font-size:45%;   //to change font size } </style> </head> <body> <p>This is p tag</p> <h2>This is h2 tag</h2> <h3>This is h3 tag</h3> </body> </html> 2)Write HTML program which contains external style sheet with user-defined Classes. ANS) HTML CODING : <!doctype html> <html> <head> <title>Unit 1 - prg 2</title> <link rel="stylesheet" href="css1.css" type="text/css"> </head> <body> <p c...