LoginSignup
4
3

More than 5 years have passed since last update.

[TwitterBoostrap]画面上部のメニュー(ナビゲータ)

Posted at
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
    <title></title>
    <link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
    <div class="navbar navbar-fixed-top">
        <div class="navbar-inner">
            <div class="container">
                <a class="brand" href="">kuwa.jp</a>
                <ul class="nav">
                    <li class="active"><a href="">Home</a></li>
                    <li><a href="">Menu</a></li>
                </ul>
            </div>
        </div>
    </div>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script src="js/bootstrap.min.js"></script>
</body>
</html>
4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3