Please can you list out the steps in order to create a website using Html, Css, JavaScript And Php? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Please can you list out the steps in order to create a website using Html, Css, JavaScript And Php?

Website development and creation.

20th Jul 2021, 6:46 PM
Victor Ojo
Victor Ojo - avatar
1 Answer
+ 2
Well, there isn't really a universal formula for doing it, but the general idea is to start with the HTML text, forms, video, and other elements (ie, start with the HTML first as the content skeleton). Then, style it up with CSS to make it look nice (experience as a graphics designer would be good here). Put some thought into it too, organization is important (for example, think about where the nav bar will go, how your content will be laid out, etc). Set up a php server to host the website, and handle any form data (XAMMP is some php server software I used during college). Having a database is great for storing form data and even analytics if you want to go that far (be careful though, some forms of data collection have legal implications). SQL is a good start. Finally, use javascript to automate anything you want on the client side (this could be asynchronous actions, ie being able to send forms and other data without having to refresh the page). This can go right into the HTML code. You could think of JS as being a topping to a desert, because it can really make a website shine with how it can automate your site. This is just a very general, very abstract explanation though, so I suggest going through the HTML, CSS, JS, PHP, and SQL courses here to get a better idea of how it all comes together.
20th Jul 2021, 7:08 PM
BootInk
BootInk - avatar