0
私の練習用ウェブサイトのために垂直タブを取得しようとしています。私はhtmlの新機能ですが、数時間、この問題に悩まされています。 これは問題です。thisのWebサイトのコードを自分のプロジェクトに実装すると、それは最初のようなものではなく、奇妙なものになります。ここに私のファイルと何が間違っているの写真です。垂直のタブを動かそうとしています
<!DOCTYPE html>
<html>
<body>
<header>
</header>
<p><font face="verdana"size="5">About Me</font></p>
<br>
<p><font face="verdana"size="5">Programming Work</font></p>
<br>
<p><font face="verdana" size="5">About This Website</font></p>
ul class="tabs vertical" data-tab>
<li class="tab-title active"><a href="#panel11">Tab 1</a></li>
<li class="tab-title"><a href="#panel21">Tab 2</a></li>
<li class="tab-title"><a href="#panel31">Tab 3</a></li>
<li class="tab-title"><a href="#panel41">Tab 4</a></li>
</ul>
<div class="tabs-content">
<div class="content active" id="panel11">
<p>This is the first panel of the basic tab example. You can place all sorts of content here including a grid.</p>
</div>
<div class="content" id="panel21">
<p>This is the second panel of the basic tab example. This is the second panel of the basic tab example.</p>
</div>
<div class="content" id="panel31">
<p>This is the third panel of the basic tab example. This is the third panel of the basic tab example.</p>
</div>
<div class="content" id="panel41">
<p>This is the fourth panel of the basic tab example. This is the fourth panel of the basic tab example.</p>
</div>
</div>
私が引用したウェブサイトは、任意のCSSやJSを持っていなかったので、私はこれが働くだろうと想定。どんな援助も感謝するだろう!