Black
Black

Reputation: 20232

PhpStorm - Create normal HTML, JS, CSS project

Is it possible to create a simple Project which only uses HTML, JavaScript and CSS, or do I have to use netbeans?

I tried to start a new project, but I have only these options:

enter image description here

and I am not sure what "HTML5 Boilerplate" is.

Upvotes: 0

Views: 1365

Answers (1)

LazyOne
LazyOne

Reputation: 165118

Just use the top most "PHP Empty Project" option.

If you do not have local or remote PHP -- just choose <no interpreter> option for "CLI Interpreter" field.

In the end you will get empty project.


Alternative solution:

  1. Create empty project folder using your file manager/terminal.
  2. Using PhpStorm use Open from Welcome screen (or File | Open Directory if you have some project already opened") and point to the project root folder -- IDE will create new project (or reuse existing one (if it finds .idea subfolder)) from those files.

I am not sure what "HTML5 Boilerplate

You may click on blue link on the top right corner of that screen and it will take you to the GitHub page for that project.

From there: https://github.com/h5bp/html5-boilerplate

HTML5 Boilerplate is a professional front-end template for building fast, robust, and adaptable web apps or sites.

This project is the product of many years of iterative development and combined community knowledge. It does not impose a specific development philosophy or framework, so you're free to architect your code in the way that you want.

Upvotes: 2

Related Questions