Can we able to develop a web site only using html, css and js | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Can we able to develop a web site only using html, css and js

18th May 2017, 2:55 AM
Samundeeswari
Samundeeswari - avatar
16 Answers
+ 1
Ok thank you so much for your answers
18th May 2017, 7:09 AM
Samundeeswari
Samundeeswari - avatar
+ 1
hello sam
29th May 2017, 8:38 AM
Farooq Khan.S
Farooq Khan.S - avatar
0
Yes, you could build a static website with a touch of Js to make it a little interactive. Using a back-end language, on the other hand, will take your site to a whole different level.
18th May 2017, 3:49 AM
CHMD
CHMD - avatar
0
Actually I am making a web app with only those languages with a nodejs backend and it is going great!
18th May 2017, 5:32 AM
Benoit Ranque
Benoit Ranque - avatar
0
I have wrote few codes in html css and js to create a image slider in notepad i don't know to execute together
18th May 2017, 6:32 AM
Samundeeswari
Samundeeswari - avatar
0
Since i am a beginner i like to create my own website plz give me some guidence
18th May 2017, 6:34 AM
Samundeeswari
Samundeeswari - avatar
0
ok give me a second make a coding folder on your computer add three text files. save them as as index.html, script.js, style.css in index.html <!DOCTYPE html> <html> <head> <title>Page Title</title> <link rel="stylesheet" href="style.css"> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <script src="script.js"></script> </body> </html> in script.js alert("hello") in style.css h1 { color: blue }
18th May 2017, 6:36 AM
Benoit Ranque
Benoit Ranque - avatar
0
Ya i have done as you said nxt step
18th May 2017, 6:44 AM
Samundeeswari
Samundeeswari - avatar
0
open index.html with your web browser tell me what you see
18th May 2017, 6:50 AM
Benoit Ranque
Benoit Ranque - avatar
0
Yes i got the answer I got alert box then This is a heading in blue color This is a paragraph in small font
18th May 2017, 7:02 AM
Samundeeswari
Samundeeswari - avatar
0
good. now go forth and play. test all your javascript and css and html there. I suggest going through the courses here and copying the code you see into those files. copy as in type yourself. then run it. see if it works. change something also take a look at htmldog.com
18th May 2017, 7:03 AM
Benoit Ranque
Benoit Ranque - avatar
0
explain the line of code ‹link rel= "stylesheet" href="style.css"›
18th May 2017, 7:05 AM
Samundeeswari
Samundeeswari - avatar
0
What is rel
18th May 2017, 7:06 AM
Samundeeswari
Samundeeswari - avatar
0
that line imports a css stylesheet called style.css take a look at mdn for a detailed answer.
18th May 2017, 7:07 AM
Benoit Ranque
Benoit Ranque - avatar
0
you are welcome have fun
18th May 2017, 7:10 AM
Benoit Ranque
Benoit Ranque - avatar
0
the " rel " attribute specifies the relationship between the current document and the linked document/resource.@Samundeeswari.
29th May 2017, 8:51 AM
ÃrShåD KHãÑ
ÃrShåD KHãÑ - avatar