+ 3
Yeah I have a question ......How do we join JavaScript and html/css codes ? and what about using the frameworks
3 Respuestas
+ 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.
+ 2
To join Java script :
<html>
<script src="Javascript.js">
</html>
+ 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>