The syntax for creating a new table in MariaDB is:
```
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
….
);
```
Here is an example:
```
CREATE TABLE Employees (
ID int,
Name varchar(255),
Salary float,
Department varchar(255)
);
```
In the above code, `Employees` is the table name, and `ID`, `Name`, `Salary`, and `Department` are column names with their respective datatypes (`int`, `varchar(255)`, and `float`).