Posts by Matheus Macias • 44 points
3 posts
-
0
votes2
answers327
viewsA: What is the best tag to create a menu bar
you can make your menu this way horizontally *{margin: 0; padding: 0;} body{font-family: 'Roboto', sans-serif;} .menu{height: 60px; width: 100%; background-color: #f74343; display: table;} .menu…
-
1
votes2
answers327
viewsA: What is the best tag to create a menu bar
you can use the tag Nav it represents a selection of links ex: <nav> <ul> <li><a href="#">test</a></li> </ul> </nav> I didn’t quite understand your…
-
1
votes2
answers44
viewsA: Save date and time of start of task with button and insert in mysql
I didn’t understand exactly, but I’ll try to answer click on your database then go to sql puts this command: ALTER TABLE SUA_TABELA ADD data datetime; ^^ it will add a date column in your table $now…