"XML style closing syntax for an empty element" issue using the jssor slider

114 Views Asked by At

Hi all i have downloaded the jssor full pack and unzipped to my website folder how come i got an error whilst copy and paste the code onto my html code that i made using adobe dreamweaver cs3.

Here are some of the errors:

The tag: "link" has an XML style closing syntax for an empty element even though version: "HTML20" is not an XML tag language.[HTML 4.0]

sorry i'm completely not a coding savvy

2

There are 2 best solutions below

3
On

Use <link /> if you are writing XHTML. Use <link> if you are writing HTML.

You are using the former but whatever tool you are using thinks you are trying to write HTML.

3
On

Please replace

<link href="bootstrap.min.css" rel="stylesheet">

with

<link href="bootstrap.min.css" rel="stylesheet" />