List of Cards with Articles
HTML
Medium
2 views
Problem Description
Create a list where each item contains an article with title and text.
Output Format
Print the HTML code.
Constraints
Use ul/li and article.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode</title>
</head>
<body>
<ul>
<li>
<article>
<h2>HTML Basics</h2>
<p>Start with tags.</p>
</article>
</li>
<li>
<article>
<h2>Forms</h2>
<p>Collect user data.</p>
</article>
</li>
</ul>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!