Generation

создать красивую таблицу учета данных со стилями css

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Form</title> <style> body { font-family: "Arial"; font-weight: 500; font-size: 12pt; } table { border-collapse: collapse; border-spacing: 0; border: 1px solid black; } td, th { border: 1px solid black; padding: 3px; } th { background: #ddd; color: black; font-weight: bold; } </style> </head> <body> <table> <thead> <tr> <th>Состояние</th> <th>Количество</th> </tr> </thead> <tbody>

Questions about programming?Chat with your personal AI assistant