+ 2

Table

Hi guys, I like to create tables, but I'm confused with the themes. I really don't know about which topic I could make a table. Do you have an Idea? Every idea is welcome!😉

28th Jan 2025, 6:21 PM
ParaworldSL
ParaworldSL - avatar
3 Antworten
+ 8
ParaworldSL , sorry to say, but we miss most of the required information. > i suppose you are talking about 'web development`. > we need to see your current code try to catch the issues you have. > also give a short description of what exactly your problem is. please post a link to your current try here. in general you should repeate the basic `html` lessons. creating tables is described there.
28th Jan 2025, 7:27 PM
Lothar
Lothar - avatar
+ 1
Oh sorry😁 I don't have any issues with creating tables, only with the topics. I did some tables already, ( and I know how to create them,) about topics I liked. I only wanted to know if you have any ideas for me about which topic I could make a table, because i don't have any ideas left...😬 Sorry for the mistake.😔 And thank you a lot for your answer!
29th Jan 2025, 5:57 PM
ParaworldSL
ParaworldSL - avatar
+ 1
A example. <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My table</title> <!--this is my table--> <style> body{ background-color:black; } th{ color:white; } td{ color:white; } </style> </head> <body> <table Border> <caption> My table</caption> <tr> <th>Horaires</th> <th>Monday</th> <th>Tuesday</th> <th>wednesday</th> </tr> <tr> <td>HTML</td> <td>CSS</td> <td>PYTHON</td> </tr> </table> </body> </html>
2nd Mar 2025, 3:57 AM
Tamimouddine Valdoxe
Tamimouddine Valdoxe - avatar