so im not charging a ton of money, really im doing it for more or less learning purposes but im curious, what are some of the benefits of coding your own website? the website is for more of word of mouth, which is pretty effective still in new york, but also to extract leads. promote on facebook/instagram ect.
we are not really focused on ranking at the moment, although its not ruled out in the near future since other companies dont understand how local seo works yet.
you seem like an expert, and if you wouldnt mind sharing the pros and cons of using wordpress/css it would be very helpful to me!
thanks for your help and response buddy
Word up I'm from Jersey son. Word of mouth in NY is no joke spreads like fire.
In simple terms
Wordpress is a CMS built with PHP that you would want to host on NGINX
CSS is for design little to no logic (You could get fancy with animations some logic there)
HTML is for structure just markup no logic
JS is a scripting language. This makes the page come "alive". Has logic and is typically written in an OOP fashion. Make sure to write code in ES6 & use a style guide like AirB&Bs
PHP, (If you use wordpress), is another language you would need to dive into if you so choose to go that deep. PS PHP is a terrible language based on modern choices.
Developing your own platform in my case was the only way to build the applications I wanted to build. There was no existing technology solutions that would solve the issues I was facing.
Wordpress
Pros
Dead Simple
Easy to work with for beginners
Large community great for support
Lot's of docs/themes/plugins
Good for a quickly throwing things up
Has everything you need to get started
Little to no work required
A good wordpress theme would require little to no code knowledge.
Easy SEO
Ecommerce solutions
Cons
Built with PHP (Garbage language - poorly designed)
The architecture blows
Security still sucks
Stuck with MYSQL (Good/bad thing)
The admin panel design is a trash can designed by a blind child.
Slow AF
Working with 5 different languages PHP,MYSQL,CSS,HTML,JS
Multiple APIs
If you like Node take a look at Ghost. It has a clean design and can scale pretty well. Using Node allows you to stick with 3 languages and if you use RethinkDB the query language is northing more than standard JS. You end up with what is called full stack javascript. Meaning you just need to learn JS/CSS/HTML.
Now for what you should do.
From what I have read looks like you are trying to be useful and learn something. Not just throw up some BS single landing page or buy this or buy that trash can. That being said this is the order you should follow. Easy way out Wordpress but you will still learn something. 2nd want to just be quick no logic simple HTML/CSS then use something like boostrap (Automatically can scale down to mobile if done right). In the future experiment and use Node.
Now go forth and make knowledge gains!