Daily HTML Coding Challenge

Sharpen your programming skills by solving a new HTML coding problem everyday!

Ends In: --:--:--
Solution Available In: --:--:--
Jul
24
2026
Easy 50 Points

HTML Unordered List

Create an HTML unordered list
    containing two items
  • Python
  • and
  • Java
  • .

Input Format

No input.

Output Format

HTML unordered list markup.

Constraints

Use
    and
  • tags.

Examples

Example 1:
Output:
<ul>
  <li>Python</li>
  <li>Java</li>
</ul>
Explanation: Valid HTML Unordered List
HTML
Theme:
Console Output
Press 'Run Code' to execute your program against the sample test cases.
Enter Submission Details
Hints Available
  1. <ul><li>Item</li></ul>
Challenge Completed!
🎉
🚀
🔥
🌟
🎊
🏆
✨ Daily Coding Challenge ✨
🎉 SUCCESSFULLY SOLVED 🎉
User Name
from Location
HTML Unordered List
Success Card
Generating your shareable success card...
Official Solution
Go Back Top