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

Unordered list showing as normal text

New Here ,
Jul 14, 2019 Jul 14, 2019

I have encountered an issue where my un ordered lists don't show up, instead are just shown as text which is annoying because I'm trying to make a nav bar.

My code:

<!doctype html>

<html>

<head>

<meta charset="UTF-8">

<title>Test</title>

<link href="style.css" rel="stylesheet" type="text/css">

</head>

<body>

<ul class="nav">

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

</ul>

</body>

</html>

569
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

correct answers 1 Correct answer

LEGEND , Jul 14, 2019 Jul 14, 2019

Try writing your list correctly, its <li></li> NOT <il></il> as in your example below is showing:

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

Translate
LEGEND ,
Jul 14, 2019 Jul 14, 2019

Try writing your list correctly, its <li></li> NOT <il></il> as in your example below is showing:

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

<il><a href="#">Home</a></il>

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 ,
Jul 14, 2019 Jul 14, 2019
LATEST
  1. Switch to Design View.
  2. Type a word followed by the Enter key.
  3. Repeat with 4 other words.
  4. Highlight all 5 words and select the bullet icon from your HTML Properties Inspector (Ctrl+F3).
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