D
D
Danil Panasyuk2018-06-05 19:33:37
Bootstrap
Danil Panasyuk, 2018-06-05 19:33:37

Why is Bootstrap not working?

Bootstrap not working, here is the HTML source

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Bootstrap сайт</title>
  <link rel="stylesheet" href="/css/bootstrap.css">
  <link rel="stylesheet" href="/css/fontawesome.css">
  <link rel="stylesheet" href="/css/main.css">
</head>
<body>
  <div class="navbar navbar-inverse navbar-fixed-top">
    <div class="container">
      <div class="navbar-header">
        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
          <span class="icon-bar"></span>
          <span class="icon-bar"></span>
          <span class="icon-bar"></span>
        </button>
        <a class="navbar-brand" href="#">PR<i class="fa fa-circle"></i>GER</a>
      </div>
      <div class="navbar-collapse collapse">
        <ul class="nav navbar-nav navbar-right">
          <li class="active"><a href="#">На главную</a></li>
          <li><a href="#">Про нас</a></li>
          <li><a href="#">Обратная связь</a></li>
          <li><a href="#">Состав</a></li>
          <li><a href="#">Авторизация</a></li>
        </ul>
      </div>
    </div>
  </div>
</body>
</html>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Pavel, 2018-06-05
@serafinofamily

Locale I guess? Do you open without a web server?
Change the paths to:

<link rel="stylesheet" href="css/bootstrap.css">
  <link rel="stylesheet" href="css/fontawesome.css">
  <link rel="stylesheet" href="css/main.css">

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question