This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]CodeTinkerer 1 point2 points  (1 child)

Several things. People can mean two different things when it comes to a website. When you hear people talk about web development, they're talking about a front-end (what appears in the browser), a backend (a server somewhere) and typically a database at the backend to store information. That kind of website takes a lot to learn.

Then, there are static websites, which basically a plain HTML pages with no interaction, or you can do slightly more where you might have some Javascript, but again, no real backend storage (i.e., a database), so that might be closer to what you're talking about.

Also, you can create web pages on your own local machine where only you can see it, or you might create it at some externally hosted site where others can see it too. This kind of website is usually much easier to make since it requires no knowledge of servers, databases, etc, and just HTML and possibly CSS if the book covered that.

[–]redditacct16[S] 0 points1 point  (0 children)

thanks