0
Please guys how do I do the CSS and Javascript codes on my computer using notepad and how do I join them all to the html code?
4 Answers
+ 3
First of all remove those all irrelevant codes and tag from question description.
You said you have completed learning html, css, js! It's time to start again! All the things were explained in course.
please keep writing codes when you learn otherwise it becomes very hard to understand and remember.
To link css we use <link> tag.
Syntax :
<link href="path_to_css_file" rel="stylesheet">
To link js you can use <script> tag.
Syntax:
<script ="path_to_js_file" >
To link the files easily I'll suggest you to place all html, css and js files in same folder .
Then you can write file name( with extension ) in above syntax.
https://www.sololearn.com/learn/CSS/1079/?ref=app
https://www.sololearn.com/learn/JavaScript/1206/?ref=app
+ 2
As its your first time don't forget to save your file with proper extensions.
file_name.html
file_name.css
file_name.js
+ 1
Thanks. It's my first time.
0
Okay I wouldn't forget.