Computer Science, asked by akankshaprasad25, 9 months ago

write a code to create any form in html and apply any css property on it​

Answers

Answered by Itscutey
1

! DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> <title>My first styled page</title> <style type="text/css"> body { color: purple; background-color: #d8da3d } </style> </head> <body> [etc.] The first line says that this is a style sheet and that it is written in CSS (“text/css”).

Similar questions