How do I reference a local CSS/JS file from within an HTML?

In the html file, inside the “head” tags, insert all the lines of the .css between the statements:
style type = “text / css”

lines of your .css

/style

For the .js, the same but inside the “body” tags with the statement:

script type = “text / javascript”

lines of your .js

/script