Yeah I have a question ......How do we join JavaScript and html/css codes ? and what about using the frameworks | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Yeah I have a question ......How do we join JavaScript and html/css codes ? and what about using the frameworks

14th Nov 2018, 3:32 PM
Jay_Junior
Jay_Junior - avatar
3 Answers
+ 5
This can help you: Ways to join HTML/CSS/JS in the same project: CSS: https://www.sololearn.com/learn/CSS/1079/ JavaScript: https://www.sololearn.com/learn/JavaScript/1206/ frameworks are great collections of codes/functions that help us make our work most fast! frameworks help a lot with built in components and funcionalities.
15th Nov 2018, 5:28 AM
Biel Blue
Biel Blue - avatar
+ 2
To join Java script : <html> <script src="Javascript.js"> </html>
14th Nov 2018, 3:50 PM
Shubham Rawat
Shubham Rawat - avatar
+ 1
To join css : <head> <link rel="stylesheet" href="example.css"> </head> <body> <p>This is my first paragraph.</p> <p>This is my second paragraph. </p> <p>This is my third paragraph. </p> </body>
14th Nov 2018, 3:52 PM
Shubham Rawat
Shubham Rawat - avatar