+ 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!😉
3 Respuestas
+ 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.
+ 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!
+ 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>