Twitter ユーザーに関する次の 3 つの情報を表示するTwitter アプリケーションを作成しています。
- statuses/user_timeline を取得
- 友達/IDをGET
- フォロワー/IDをGET
私の質問は、上記の 3 つのものを 1 つの<article>
タグ内に配置し、3 つのタグを使用してそれらを分離することは意味的に正しい<section>
ですか? (以下のオプション 1 を参照)
<article>
それとも、3 つのタグ (上記の項目ごとに 1 つ) を使用することは意味的に正しいのでしょうか? (下記のオプション 2 を参照)
オプション1:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Twitter App</title>
</head>
<body>
<article>
<section>
<h2>User's Timeline<h2>
<!-- Displays GET statuses/user_timeline here -->
</section>
<section>
<h2>User's Friends<h2>
<!-- Displays GET friends/ids here -->
<section>
<section>
<h2>User's Followers<h2>
<!-- Displays GET followers/ids -->
</section>
</article>
</body>
</html>
オプション 2:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Twitter App</title>
</head>
<body>
<article>
<header>
<h2>User's Timeline<h2>
</header>
<!-- Displays GET statuses/user_timeline here -->
<footer></footer>
</article>
<article>
<header>
<h2>User's Friends<h2>
</header>
<!-- Displays GET friends/ids here -->
<footer></footer>
</article>
<article>
<header>
<h2>User's Followers<h2>
</header>
<!-- Displays GET followers/ids -->
<footer></footer>
</article>
</body>
</html>