You can install MySQL for Windows here.
The new MySQL install very convenient. But is made for Windows.
https://dev.mysql.com/downloads/installer/
Give this article a read for Linux
https://ubuntu.com/server/docs/databases-mysql
You can install MySQL for linux like this :
sudo apt install mysql-server sudo service mysql status
The best CSS library I have ever used for mobile Optimisation!
After full time developing since 2016 I still used this one almost every project I complete. In terms of mobile optimisation. Bootstrap remains king!
It is simple and easy to learn. Allowing new developers to pick it up fast. And cutting down the work load for mobile optimisation greatly. I highly recommend BootStrap to any web developer.
Check out this Derek Banas!
Derek Banas was an amazing resource when I was starting out in programming and still to this day is fantastic.
He covers fundamentals and explains tpoics very well and clearly for you to understand. I highly recommend this channel!
You can visit his Learn in One Video paylist here :
https://www.youtube.com/watch?v=Rub-JsjMhWY&list=PLGLfVvz_LVvSX7fVd4OUFp_ODd86H0ZIY&ab_channel=DerekBanas
And you can find his channel here :
https://www.youtube.com/@derekbanas/featured
By Adding the below snippet to your WordPress functions.php file you can remove the Divi Project Post Type which is added by Default.
add_filter( 'et_project_posttype_args', 'mytheme_et_project_posttype_args', 10, 1 ); function mytheme_et_project_posttype_args( $args ) { return array_merge( $args, [ 'public' => false, 'show_ui' => false, 'show_in_nav_menus' => false, 'publicly_queryable' => false, 'exclude_from_search' => false ] ); }