0

How to link html css and java script together?

19th Jul 2017, 10:20 AM
Mohammed Zubair
Mohammed Zubair - avatar
2 Answers
+ 4
<link rel="stylesheet" type="text/css" href="url_of_file.css"> ... in <head> part of Html ^^
19th Jul 2017, 10:28 AM
visph
visph - avatar
+ 3
Use link to add your css to your html file and script to add your js to your html. Put link in the head of html file. Script can be placed at the end of the body or in the head. Syntax: <link href="#" type="text/css" rel="stylesheet"> <script src="#"></script>
19th Jul 2017, 10:28 AM
Drax
Drax - avatar