Copy link to clipboard
Copied
Hello.
Problem number one:
I'm trying to add a link to 2 CTAs in dreamweaver but they just do not work:
The message on 53 and 54 line is "Special characters must be escaped [<]" and "Tag must be paired , no start tag [</a>]". I've tried to replace it but it does not work.
Problem number two:
Same thing, "Special characters must be escaped [<]"
Problem number three:
Photo of line 97:
Could someone help me on this, please?
Thanks!
Copy link to clipboard
Copied
line 52 does not have a closing TD tag as in </td>
line 53 is a complete mess. The structure should look like <td><a href=""><img src="" alt=""></a></td>. . File name must not have spaces.
line 54 is a complete mess like line 53.
line 104 has a rogue < before the <img> tag and has a space in the filname.
line 113 has nothing wrong as long as it is to close a <tr> tage preceding it.
line 100 a <tbody> tag is illegal. Can only be used as a direct descendant of a <table> tag
Why have you used a table structure? What is a CTA? Why are you tackling a website without HTML knowledge?
Copy link to clipboard
Copied
By CTA it looks like you are copying code from another site with a button. What looks like happened is that you went into code and it should have gone between the <td></td> tags but there was an overlap and your pasted code overwrote some of the good code that was on the page and that is causing this domino effect of tag errors you are getting. I would delete the CTAs entirely and make sure they are inside the <td></td> that I mentioned.
Copy link to clipboard
Copied
Tables are for tabular data, not layouts.
What are you creating -- a web app, email, or website?
Which devices are you building this for -- mobile, tablet, desktop?