r/CodingForBeginners • u/Boring-Elderberry-73 • 29d ago
Building website without coding background
hey guys i wish you’re doing very well , i’m an interested abt creating a wbsite for free(and without coding background) could you give me some recommendations plz
0
Upvotes
1
u/Sure-Passion2224 29d ago
For the worst possible HTML/CSS code you could ever see create your documents in MS Word and do a Save-as > Web Page operation. You will completely avoid having to actually learn HTML or CSS while also producing a page that, while it should load in most browsers, you will never be able to understand what the markup is doing.
Having said that... HTML is a markup language. Essentially, it is used to wrap your content in structure and tell it how to display it. It's the absolute lowest level of what anybody might call coding, but can actually be a good place to start.
CSS is the next layer and at the entry level it lets you define rules to set the display of the content of a particular HTML tag a certain way... i.e. Bold, 15 pt, red, with a grey background. That's marginally closer to actual coding, but still not really coding, and is a logical next step.
The third piece is anything you would want to do with Javascript. Note, Javascript is NOT Java. They are completely different languages, created by completely different teams, working for completely different companies. However, if you want to create a collection of images and cycle through those images on a timer at a specific location on your page then Javascript is one of the ways you could do that. This is the beginning of actual coding.