What is the best way to use sololearn web codes when offline? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the best way to use sololearn web codes when offline?

The point is to copy html, css and js code into three text files respectively in to some local folder and then use browser to view them. What basically need to be done to achieve this? Any best practices?

5th Sep 2018, 7:38 AM
Alexander Kurnaev
Alexander Kurnaev - avatar
2 Answers
+ 2
All three files should be in three different directories(folders) as follows HTML files should be in your project name directory e.g facebook-project. CSS files should be a sub directory named css under your project name. JavaScript files should also be a sub directory named js under your project name. then to reference them, your code should be as follows in head head tag of your index.html file. <link rel="stylesheet" type="text/css" href="css/style.css"> <script type="text/javascript" src="js/script.js"></script>
5th Sep 2018, 8:09 AM
Akoh Peter Emeka
Akoh Peter Emeka - avatar
0
I've just added the folowing to the bottom of the head section of main html file (filenames are "index.html", "style.css" and "script.js", respectively: <script src="script.js"></script> <link rel=stylesheet type="text/css" href="style.css"> It works just fine, but I wonder if there is a better way to achieve same goal?
5th Sep 2018, 7:51 AM
Alexander Kurnaev
Alexander Kurnaev - avatar