Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Dreamweaver special character must be escaped

New Here ,
May 02, 2020 May 02, 2020

any please help me figure where i am missing special character must be escaped.here is teh code.

<div class="">
<h1><strong> Trending Now </strong><br>
<td align="left" valign="top" </td>
<span style="color: #F0FF06"></span><span style="color: #EAF01A"></span><span style="font-size: 24px"></span></h1>
</div>

I believe i am missing the escaped at <td align="left" valign="top" </td>. Appreciate any help.

TOPICS
Code
866
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 02, 2020 May 02, 2020

Your code is malformed. 

 

HTML = content

CSS = styles. 

Keep styles separate from content. And never use tables for layout.

 

<div class="">
<h1><strong> Trending Now </strong><br>
<td align="left" valign="top" </td>
<span style="color: #F0FF06"></span><span style="color: #EAF01A"></span><span style="font-size: 24px"></span></h1>
</div>

 

 

CSS CODE:

.text-warning {
font-size:24px;
color:#EAF01A;
}

 

HTML CODE:

<div>

<h1 class="text-warning">Trending Now</h1>

</div>

 

Learning proper coding methods will save you a lot of time.

https://www.w3schools.com/html/default.asp

https://www.w3schools.com/bootstrap4/bootstrap_colors.asp

 

Nancy O'Shea— Product User, Community Expert & Moderator
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 02, 2020 May 02, 2020

Adding to what Nancy has said:

BenPleysier_0-1588471496901.png

 

Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 03, 2020 May 03, 2020

Copy the following code and paste it in a new document. This is precisely what Nancy has already said.

 

 

<!doctype html>
<html>

<head>
	<meta charset="UTF-8">
	<title>Untitled Document</title>
	<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>

<body>
	<h1>Trending Now</h1>
</body>

</html>

 

As far as the error message is concerned, did you see my previous reply?????

 

Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 03, 2020 May 03, 2020
LATEST

Thank you Ben, as far as the error is concerned i did not you your previous reply!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines