Прошу допомоги "container", Чому не змінюється текст?

5 июля, 14:09 Разное 3717 1

<!doctype html>

<html lang="en">

 <head>

   <meta charset="utf-8">

   <meta name="viewport" content="width=device-width, initial-scale=1">

   <title>Bootstrap demo</title>

 </head>

 <body>

   <div class="container">

   <h1>Hello, world!</h1>

   </div>

 </body>

</html>

 

1 комментарий
Сортировка:
Добавить комментарий
Vladuslav
Vladuslav 2022, 6 июля, 14:02
0

Вирішив питання:

По новому записав шапку кода:

 

<!DOCTYPE html>

<html lang="en">

<head>

 <title>Bootstrap Example</title>

 <meta charset="utf-8">

 <meta name="viewport" content="width=device-width, initial-scale=1">

 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">

 <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>

 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>

 <title>Hello, world!</title>

</head>