+ 4
Can I create a website without using JavaScript?
I need to create a website but I have no idea on JavaScript, so I thought maybe its possible to create a site without any JavaScript
11 Réponses
+ 1
Take a look my mockup app.
Design only using HTML and CSS.
Not yet add Javascript.
This is what HTML/CSS can do.
https://code.sololearn.com/WE6a4llbDxaW/?ref=app
+ 5
absolutely. some people even disable javascript in their browsers.
+ 2
you can create a website without even html, a basic text in html file, no html tags just plain text. and the browser will do the rest for you!
* with html5 a lot of stuff is possible nowadays!
+ 2
I want the site to be a responsible one... with photos on it....
to go straight to the point, I wanna create an online voting system that involves photos of the contestants
+ 2
how would transfer the user vote " the client status" to you "the server" ?
you need a back-end language.
+ 2
To process and record any user input, you will want to use something server side. Client side, you *could* do it with a basic HTML form, and no Javascript. But you will need something to receive the form data. Javascript is very useful for validating HTML form data before it is send to the server, which helps provide security, at a minimum.
+ 2
Basically you could create or duplicate any existing websites in HTML and CSS only, the layout could be as good as most of the online websites.
However without using Javascript, you could only have the aesthetic of the layout, it's just static images and text with limited animation. There is no interactive action between visitors and website, no data update, no design manipulation, no logical functions run on the website.
+ 1
You can make a static site without Scripting language but you can't make people vote without JavaScript
+ 1
Yeah create the site with HTML & CSS. And to make it responsive use CSS media queries to target large, medium and small screens. e.g
/* large screen*/
@media (min-width: 700px) {
// code logic goes here
}
0
You can create a site with basic HTML only if you wish
0
I think that js has a lot of different helpful options. And for my opinion it's easier to use JavaScript to code an animated menu for example.